home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / amiga / gasldsrc.lha / gas-1.38 / m68k-opcode.c < prev    next >
C/C++ Source or Header  |  1991-04-07  |  81KB  |  1,507 lines

  1. /* Opcode table for m68000/m68020 and m68881.
  2.    Copyright (C) 1989, Free Software Foundation.
  3.  
  4. This file is part of GDB, the GNU Debugger and GAS, the GNU Assembler.
  5.  
  6. Both GDB and GAS are free software; you can redistribute and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GDB and GAS are distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GDB or GAS; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.    
  20. #include "m68k-opcode.h"
  21.  
  22. /*
  23.     *** DANGER WILL ROBINSON ***
  24.  
  25.    The assembler requires that all instances of the same mnemonic must be
  26.    consecutive.  If they aren't, the assembler will bomb at runtime
  27.  */
  28. struct m68k_opcode m68k_opcodes[] =
  29. {
  30. {"abcd",    one(0140400),        one(0170770),        "DsDd"},
  31. {"abcd",    one(0140410),        one(0170770),        "-s-d"},
  32.  
  33.         /* Add instructions */
  34. {"addal",    one(0150700),        one(0170700),        "*lAd"},
  35. {"addaw",    one(0150300),        one(0170700),        "*wAd"},
  36. {"addib",    one(0003000),        one(0177700),        "#b$b"},
  37. {"addil",    one(0003200),        one(0177700),        "#l$l"},
  38. {"addiw",    one(0003100),        one(0177700),        "#w$w"},
  39. {"addqb",    one(0050000),        one(0170700),        "Qd$b"},
  40. {"addql",    one(0050200),        one(0170700),        "Qd%l"},
  41. {"addqw",    one(0050100),        one(0170700),        "Qd%w"},
  42.  
  43. {"addb",    one(0050000),        one(0170700),        "Qd$b"},    /* addq written as add */
  44. {"addb",    one(0003000),        one(0177700),        "#b$b"},    /* addi written as add */
  45. {"addb",    one(0150000),        one(0170700),        ";bDd"},    /* addb <ea>,    Dd */
  46. {"addb",    one(0150400),        one(0170700),        "Dd~b"},    /* addb Dd,    <ea> */
  47.  
  48. {"addw",    one(0050100),        one(0170700),        "Qd%w"},    /* addq written as add */
  49. {"addw",    one(0003100),        one(0177700),        "#w$w"},    /* addi written as add */
  50. {"addw",    one(0150300),        one(0170700),        "*wAd"},    /* adda written as add */
  51. {"addw",    one(0150100),        one(0170700),        "*wDd"},    /* addw <ea>,    Dd */
  52. {"addw",    one(0150500),        one(0170700),        "Dd~w"},    /* addw Dd,    <ea> */
  53.  
  54. {"addl",    one(0050200),        one(0170700),        "Qd%l"},    /* addq written as add */
  55. {"addl",    one(0003200),        one(0177700),        "#l$l"},    /* addi written as add */
  56. {"addl",    one(0150700),        one(0170700),        "*lAd"},    /* adda written as add */
  57. {"addl",    one(0150200),        one(0170700),        "*lDd"},    /* addl <ea>,    Dd */
  58. {"addl",    one(0150600),        one(0170700),        "Dd~l"},    /* addl Dd,    <ea> */
  59.  
  60. {"addxb",    one(0150400),        one(0170770),        "DsDd"},
  61. {"addxb",    one(0150410),        one(0170770),        "-s-d"},
  62. {"addxl",    one(0150600),        one(0170770),        "DsDd"},
  63. {"addxl",    one(0150610),        one(0170770),        "-s-d"},
  64. {"addxw",    one(0150500),        one(0170770),        "DsDd"},
  65. {"addxw",    one(0150510),        one(0170770),        "-s-d"},
  66.  
  67. {"andib",    one(0001000),        one(0177700),        "#b$b"},
  68. {"andib",    one(0001074),        one(0177777),        "#bCb"},    /* andi to ccr */
  69. {"andiw",    one(0001100),        one(0177700),        "#w$w"},
  70. {"andiw",    one(0001174),        one(0177777),        "#wSw"},    /* andi to sr */
  71. {"andil",    one(0001200),        one(0177700),        "#l$l"},
  72.  
  73. {"andb",    one(0001000),        one(0177700),        "#b$b"},    /* andi written as or */
  74. {"andb",    one(0001074),        one(0177777),        "#bCb"},    /* andi to ccr */
  75. {"andb",    one(0140000),        one(0170700),        ";bDd"},    /* memory to register */
  76. {"andb",    one(0140400),        one(0170700),        "Dd~b"},    /* register to memory */
  77. {"andw",    one(0001100),        one(0177700),        "#w$w"},    /* andi written as or */
  78. {"andw",    one(0001174),        one(0177777),        "#wSw"},    /* andi to sr */
  79. {"andw",    one(0140100),        one(0170700),        ";wDd"},    /* memory to register */
  80. {"andw",    one(0140500),        one(0170700),        "Dd~w"},    /* register to memory */
  81. {"andl",    one(0001200),        one(0177700),        "#l$l"},    /* andi written as or */
  82. {"andl",    one(0140200),        one(0170700),        ";lDd"},    /* memory to register */
  83. {"andl",    one(0140600),        one(0170700),        "Dd~l"},    /* register to memory */
  84.  
  85. {"aslb",    one(0160400),        one(0170770),        "QdDs"},
  86. {"aslb",    one(0160440),        one(0170770),        "DdDs"},
  87. {"asll",    one(0160600),        one(0170770),        "QdDs"},
  88. {"asll",    one(0160640),        one(0170770),        "DdDs"},
  89. {"aslw",    one(0160500),        one(0170770),        "QdDs"},
  90. {"aslw",    one(0160540),        one(0170770),        "DdDs"},
  91. {"aslw",    one(0160700),        one(0177700),        "~s"},    /* Shift memory */
  92. {"asrb",    one(0160000),        one(0170770),        "QdDs"},
  93. {"asrb",    one(0160040),        one(0170770),        "DdDs"},
  94. {"asrl",    one(0160200),        one(0170770),        "QdDs"},
  95. {"asrl",    one(0160240),        one(0170770),        "DdDs"},
  96. {"asrw",    one(0160100),        one(0170770),        "QdDs"},
  97. {"asrw",    one(0160140),        one(0170770),        "DdDs"},
  98. {"asrw",    one(0160300),        one(0177700),        "~s"},    /* Shift memory */
  99.  
  100. {"bhi",        one(0061000),        one(0177400),        "Bg"},
  101. {"bls",        one(0061400),        one(0177400),        "Bg"},
  102. {"bcc",        one(0062000),        one(0177400),        "Bg"},
  103. {"bcs",        one(0062400),        one(0177400),        "Bg"},
  104. {"bne",        one(0063000),        one(0177400),        "Bg"},
  105. {"beq",        one(0063400),        one(0177400),        "Bg"},
  106. {"bvc",        one(0064000),        one(0177400),        "Bg"},
  107. {"bvs",        one(0064400),        one(0177400),        "Bg"},
  108. {"bpl",        one(0065000),        one(0177400),        "Bg"},
  109. {"bmi",        one(0065400),        one(0177400),        "Bg"},
  110. {"bge",        one(0066000),        one(0177400),        "Bg"},
  111. {"blt",        one(0066400),        one(0177400),        "Bg"},
  112. {"bgt",        one(0067000),        one(0177400),        "Bg"},
  113. {"ble",        one(0067400),        one(0177400),        "Bg"},
  114.  
  115. {"bchg",    one(0000500),        one(0170700),        "Dd$s"},
  116. {"bchg",    one(0004100),        one(0177700),        "#b$s"},
  117. {"bclr",    one(0000600),        one(0170700),        "Dd$s"},
  118. {"bclr",    one(0004200),        one(0177700),        "#b$s"},
  119. {"bfchg",    two(0165300, 0),    two(0177700, 0170000),    "?sO2O3"},
  120. {"bfclr",    two(0166300, 0),    two(0177700, 0170000),    "?sO2O3"},
  121. {"bfexts",    two(0165700, 0),    two(0177700, 0100000),    "/sO2O3D1"},
  122. {"bfextu",    two(0164700, 0),    two(0177700, 0100000),    "/sO2O3D1"},
  123. {"bfffo",    two(0166700, 0),    two(0177700, 0100000),    "/sO2O3D1"},
  124. {"bfins",    two(0167700, 0),    two(0177700, 0100000),    "D1?sO2O3"},
  125. {"bfset",    two(0167300, 0),    two(0177700, 0170000),    "?sO2O3"},
  126. {"bftst",    two(0164300, 0),    two(0177700, 0170000),    "/sO2O3"},
  127. {"bset",    one(0000700),        one(0170700),        "Dd$s"},
  128. {"bset",    one(0004300),        one(0177700),        "#b$s"},
  129. {"btst",    one(0000400),        one(0170700),        "Dd@s"},
  130. {"btst",    one(0004000),        one(0177700),        "#b@s"},
  131.  
  132. {"bkpt",    one(0044110),        one(0177770),        "Qs"},
  133. {"bra",        one(0060000),        one(0177400),        "Bg"},
  134. {"bras",    one(0060000),        one(0177400),        "Bw"},
  135. {"bsr",        one(0060400),        one(0177400),        "Bg"},
  136. {"bsrs",    one(0060400),        one(0177400),        "Bw"},
  137.  
  138. {"callm",    one(0003300),        one(0177700),        "#b!s"},
  139. {"cas2l",    two(0007374, 0),    two(0177777, 0107070),    "D3D6D2D5R1R4"}, /* JF FOO this is really a 3 word ins */
  140. {"cas2w",    two(0006374, 0),    two(0177777, 0107070),    "D3D6D2D5R1R4"}, /* JF ditto */
  141. {"casb",    two(0005300, 0),    two(0177700, 0177070),    "D3D2~s"},
  142. {"casl",    two(0007300, 0),    two(0177700, 0177070),    "D3D2~s"},
  143. {"casw",    two(0006300, 0),    two(0177700, 0177070),    "D3D2~s"},
  144.  
  145. /*  {"chk",    one(0040600),        one(0170700),        ";wDd"}, JF FOO this looks wrong */
  146. {"chk2b",    two(0000300, 0004000),    two(0177700, 07777),    "!sR1"},
  147. {"chk2l",    two(0002300, 0004000),    two(0177700, 07777),    "!sR1"},
  148. {"chk2w",    two(0001300, 0004000),    two(0177700, 07777),    "!sR1"},
  149. {"chkl",    one(0040400),        one(0170700),        ";lDd"},
  150. {"chkw",    one(0040600),        one(0170700),        ";wDd"},
  151. {"clrb",    one(0041000),        one(0177700),        "$s"},
  152. {"clrl",    one(0041200),        one(0177700),        "$s"},
  153. {"clrw",    one(0041100),        one(0177700),        "$s"},
  154.  
  155. {"cmp2b",    two(0000300, 0),    two(0177700, 07777),    "!sR1"},
  156. {"cmp2l",    two(0002300, 0),    two(0177700, 07777),    "!sR1"},
  157. {"cmp2w",    two(0001300, 0),    two(0177700, 07777),    "!sR1"},
  158. {"cmpal",    one(0130700),        one(0170700),        "*lAd"},
  159. {"cmpaw",    one(0130300),        one(0170700),        "*wAd"},
  160. {"cmpib",    one(0006000),        one(0177700),        "#b;b"},
  161. {"cmpil",    one(0006200),        one(0177700),        "#l;l"},
  162. {"cmpiw",    one(0006100),        one(0177700),        "#w;w"},
  163. {"cmpb",    one(0006000),        one(0177700),        "#b;b"},    /* cmpi written as cmp */
  164. {"cmpb",    one(0130000),        one(0170700),        ";bDd"},
  165. {"cmpw",    one(0006100),        one(0177700),        "#w;w"},
  166. {"cmpw",    one(0130100),        one(0170700),        "*wDd"},
  167. {"cmpw",    one(0130300),        one(0170700),        "*wAd"},    /* cmpa written as cmp */
  168. {"cmpl",    one(0006200),        one(0177700),        "#l;l"},
  169. {"cmpl",    one(0130200),        one(0170700),        "*lDd"},
  170. {"cmpl",    one(0130700),        one(0170700),        "*lAd"},
  171. {"cmpmb",    one(0130410),        one(0170770),        "+s+d"},
  172. {"cmpml",    one(0130610),        one(0170770),        "+s+d"},
  173. {"cmpmw",    one(0130510),        one(0170770),        "+s+d"},
  174.  
  175. {"dbcc",    one(0052310),        one(0177770),        "DsBw"},
  176. {"dbcs",    one(0052710),        one(0177770),        "DsBw"},
  177. {"dbeq",    one(0053710),        one(0177770),        "DsBw"},
  178. {"dbf",        one(0050710),        one(0177770),        "DsBw"},
  179. {"dbge",    one(0056310),        one(0177770),        "DsBw"},
  180. {"dbgt",    one(0057310),        one(0177770),        "DsBw"},
  181. {"dbhi",    one(0051310),        one(0177770),        "DsBw"},
  182. {"dble",    one(0057710),        one(0177770),        "DsBw"},
  183. {"dbls",    one(0051710),        one(0177770),        "DsBw"},
  184. {"dblt",    one(0056710),        one(0177770),        "DsBw"},
  185. {"dbmi",    one(0055710),        one(0177770),        "DsBw"},
  186. {"dbne",    one(0053310),        one(0177770),        "DsBw"},
  187. {"dbpl",    one(0055310),        one(0177770),        "DsBw"},
  188. {"dbra",    one(0050710),        one(0177770),        "DsBw"},
  189. {"dbt",        one(0050310),        one(0177770),        "DsBw"},
  190. {"dbvc",    one(0054310),        one(0177770),        "DsBw"},
  191. {"dbvs",    one(0054710),        one(0177770),        "DsBw"},
  192.  
  193. {"divsl",    two(0046100, 0006000),    two(0177700, 0107770),    ";lD3D1"},
  194. {"divsl",    two(0046100, 0004000),    two(0177700, 0107770),    ";lDD"},
  195. {"divsll",    two(0046100, 0004000),    two(0177700, 0107770),    ";lD3D1"},
  196. {"divsw",    one(0100700),        one(0170700),        ";wDd"},
  197. {"divs",    one(0100700),        one(0170700),        ";wDd"},
  198. {"divul",    two(0046100, 0002000),    two(0177700, 0107770),    ";lD3D1"},
  199. {"divul",    two(0046100, 0000000),    two(0177700, 0107770),    ";lDD"},
  200. {"divull",    two(0046100, 0000000),    two(0177700, 0107770),    ";lD3D1"},
  201. {"divuw",    one(0100300),        one(0170700),        ";wDd"},
  202. {"divu",    one(0100300),        one(0170700),        ";wDd"},
  203. {"eorb",    one(0005000),        one(0177700),        "#b$s"},    /* eori written as or */
  204. {"eorb",    one(0005074),        one(0177777),        "#bCs"},    /* eori to ccr */
  205. {"eorb",    one(0130400),        one(0170700),        "Dd$s"},    /* register to memory */
  206. {"eorib",    one(0005000),        one(0177700),        "#b$s"},
  207. {"eorib",    one(0005074),        one(0177777),        "#bCs"},    /* eori to ccr */
  208. {"eoril",    one(0005200),        one(0177700),        "#l$s"},
  209. {"eoriw",    one(0005100),        one(0177700),        "#w$s"},
  210. {"eoriw",    one(0005174),        one(0177777),        "#wSs"},    /* eori to sr */
  211. {"eorl",    one(0005200),        one(0177700),        "#l$s"},
  212. {"eorl",    one(0130600),        one(0170700),        "Dd$s"},
  213. {"eorw",    one(0005100),        one(0177700),        "#w$s"},
  214. {"eorw",    one(0005174),        one(0177777),        "#wSs"},    /* eori to sr */
  215. {"eorw",    one(0130500),        one(0170700),        "Dd$s"},
  216.  
  217. {"exg",        one(0140500),        one(0170770),        "DdDs"},
  218. {"exg",        one(0140510),        one(0170770),        "AdAs"},
  219. {"exg",        one(0140610),        one(0170770),        "DdAs"},
  220. {"exg",        one(0140610),        one(0170770),        "AsDd"},
  221.  
  222. {"extw",    one(0044200),        one(0177770),        "Ds"},
  223. {"extl",    one(0044300),        one(0177770),        "Ds"},
  224. {"extbl",    one(0044700),        one(0177770),        "Ds"},
  225. {"extb.l",    one(0044700),        one(0177770),        "Ds"},    /* Not sure we should support this one*/
  226.  
  227. {"illegal",    one(0045374),        one(0177777),        ""},
  228. {"jmp",        one(0047300),        one(0177700),        "!s"},
  229. {"jsr",        one(0047200),        one(0177700),        "!s"},
  230. {"lea",        one(0040700),        one(0170700),        "!sAd"},
  231. {"linkw",    one(0047120),        one(0177770),        "As#w"},
  232. {"linkl",    one(0044010),        one(0177770),        "As#l"},
  233. {"link",    one(0047120),        one(0177770),        "As#w"},
  234. {"link",    one(0044010),        one(0177770),        "As#l"},
  235.  
  236. {"lslb",    one(0160410),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  237. {"lslb",    one(0160450),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  238. {"lslw",    one(0160510),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  239. {"lslw",    one(0160550),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  240. {"lslw",    one(0161700),        one(0177700),        "~s"},    /* Shift memory */
  241. {"lsll",    one(0160610),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  242. {"lsll",    one(0160650),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  243.  
  244. {"lsrb",    one(0160010),        one(0170770),        "QdDs"} /* lsrb #Q,    Ds */,
  245. {"lsrb",    one(0160050),        one(0170770),        "DdDs"},    /* lsrb Dd,    Ds */
  246. {"lsrl",    one(0160210),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  247. {"lsrl",    one(0160250),        one(0170770),        "DdDs"},    /* lsrb #Q,    Ds */
  248. {"lsrw",    one(0160110),        one(0170770),        "QdDs"},    /* lsrb #Q,    Ds */
  249. {"lsrw",    one(0160150),        one(0170770),        "DdDs"},    /* lsrb #Q,    Ds */
  250. {"lsrw",    one(0161300),        one(0177700),        "~s"},    /* Shift memory */
  251.  
  252. {"moveal",    one(0020100),        one(0170700),        "*lAd"},
  253. {"moveaw",    one(0030100),        one(0170700),        "*wAd"},
  254. {"moveb",    one(0010000),        one(0170000),        ";b$d"},    /* move */
  255. {"movel",    one(0070000),        one(0170400),        "MsDd"},    /* moveq written as move */
  256. {"movel",    one(0020000),        one(0170000),        "*l$d"},
  257. {"movel",    one(0020100),        one(0170700),        "*lAd"},
  258. {"movel",    one(0047140),        one(0177770),        "AsUd"},    /* move to USP */
  259. {"movel",    one(0047150),        one(0177770),        "UdAs"},    /* move from USP */
  260.  
  261. {"movec",    one(0047173),        one(0177777),        "R1Jj"},
  262. {"movec",    one(0047173),        one(0177777),        "R1#j"},
  263. {"movec",    one(0047172),        one(0177777),        "JjR1"},
  264. {"movec",    one(0047172),        one(0177777),        "#jR1"},
  265.  
  266. /* JF added these next four for the assembler */
  267. {"moveml",    one(0044300),        one(0177700),        "Lw&s"},    /* movem reg to mem. */
  268. {"moveml",    one(0044340),        one(0177770),        "lw-s"},    /* movem reg to autodecrement. */
  269. {"moveml",    one(0046300),        one(0177700),        "!sLw"},    /* movem mem to reg. */
  270. {"moveml",    one(0046330),        one(0177770),        "+sLw"},    /* movem autoinc to reg. */
  271.  
  272. {"moveml",    one(0044300),        one(0177700),        "#w&s"},    /* movem reg to mem. */
  273. {"moveml",    one(0044340),        one(0177770),        "#w-s"},    /* movem reg to autodecrement. */
  274. {"moveml",    one(0046300),        one(0177700),        "!s#w"},    /* movem mem to reg. */
  275. {"moveml",    one(0046330),        one(0177770),        "+s#w"},    /* movem autoinc to reg. */
  276.  
  277. /* JF added these next four for the assembler */
  278. {"movemw",    one(0044200),        one(0177700),        "Lw&s"},    /* movem reg to mem. */
  279. {"movemw",    one(0044240),        one(0177770),        "lw-s"},    /* movem reg to autodecrement. */
  280. {"movemw",    one(0046200),        one(0177700),        "!sLw"},    /* movem mem to reg. */
  281. {"movemw",    one(0046230),        one(0177770),        "+sLw"},    /* movem autoinc to reg. */
  282.  
  283. {"movemw",    one(0044200),        one(0177700),        "#w&s"},    /* movem reg to mem. */
  284. {"movemw",    one(0044240),        one(0177770),        "#w-s"},    /* movem reg to autodecrement. */
  285. {"movemw",    one(0046200),        one(0177700),        "!s#w"},    /* movem mem to reg. */
  286. {"movemw",    one(0046230),        one(0177770),        "+s#w"},    /* movem autoinc to reg. */
  287.  
  288. {"movepl",    one(0000510),        one(0170770),        "dsDd"},    /* memory to register */
  289. {"movepl",    one(0000710),        one(0170770),        "Ddds"},    /* register to memory */
  290. {"movepw",    one(0000410),        one(0170770),        "dsDd"},    /* memory to register */
  291. {"movepw",    one(0000610),        one(0170770),        "Ddds"},    /* register to memory */
  292. {"moveq",    one(0070000),        one(0170400),        "MsDd"},
  293. {"movew",    one(0030000),        one(0170000),        "*w$d"},
  294. {"movew",    one(0030100),        one(0170700),        "*wAd"},    /* movea,    written as move */
  295. {"movew",    one(0040300),        one(0177700),        "Ss$s"},    /* Move from sr */
  296. {"movew",    one(0041300),        one(0177700),        "Cs$s"},    /* Move from ccr */
  297. {"movew",    one(0042300),        one(0177700),        ";wCd"},    /* move to ccr */
  298. {"movew",    one(0043300),        one(0177700),        ";wSd"},    /* move to sr */
  299.  
  300. {"movesb",    two(0007000, 0),    two(0177700, 07777),    "~sR1"},     /* moves from memory */
  301. {"movesb",    two(0007000, 04000),    two(0177700, 07777),    "R1~s"},     /* moves to memory */
  302. {"movesl",    two(0007200, 0),    two(0177700, 07777),    "~sR1"},     /* moves from memory */
  303. {"movesl",    two(0007200, 04000),    two(0177700, 07777),    "R1~s"},     /* moves to memory */
  304. {"movesw",    two(0007100, 0),    two(0177700, 07777),    "~sR1"},     /* moves from memory */
  305. {"movesw",    two(0007100, 04000),    two(0177700, 07777),    "R1~s"},     /* moves to memory */
  306.  
  307. {"mulsl",    two(0046000, 004000),    two(0177700, 0107770),    ";lD1"},
  308. {"mulsl",    two(0046000, 006000),    two(0177700, 0107770),    ";lD3D1"},
  309. {"mulsw",    one(0140700),        one(0170700),        ";wDd"},
  310. {"muls",    one(0140700),        one(0170700),        ";wDd"},
  311. {"mulul",    two(0046000, 000000),    two(0177700, 0107770),    ";lD1"},
  312. {"mulul",    two(0046000, 002000),    two(0177700, 0107770),    ";lD3D1"},
  313. {"muluw",    one(0140300),        one(0170700),        ";wDd"},
  314. {"mulu",    one(0140300),        one(0170700),        ";wDd"},
  315. {"nbcd",    one(0044000),        one(0177700),        "$s"},
  316. {"negb",    one(0042000),        one(0177700),        "$s"},
  317. {"negl",    one(0042200),        one(0177700),        "$s"},
  318. {"negw",    one(0042100),        one(0177700),        "$s"},
  319. {"negxb",    one(0040000),        one(0177700),        "$s"},
  320. {"negxl",    one(0040200),        one(0177700),        "$s"},
  321. {"negxw",    one(0040100),        one(0177700),        "$s"},
  322. {"nop",        one(0047161),        one(0177777),        ""},
  323. {"notb",    one(0043000),        one(0177700),        "$s"},
  324. {"notl",    one(0043200),        one(0177700),        "$s"},
  325. {"notw",    one(0043100),        one(0177700),        "$s"},
  326.  
  327. {"orb",        one(0000000),        one(0177700),        "#b$s"},    /* ori written as or */
  328. {"orb",        one(0000074),        one(0177777),        "#bCs"},    /* ori to ccr */
  329. {"orb",        one(0100000),        one(0170700),        ";bDd"},    /* memory to register */
  330. {"orb",        one(0100400),        one(0170700),        "Dd~s"},    /* register to memory */
  331. {"orib",    one(0000000),        one(0177700),        "#b$s"},
  332. {"orib",    one(0000074),        one(0177777),        "#bCs"},    /* ori to ccr */
  333. {"oril",    one(0000200),        one(0177700),        "#l$s"},
  334. {"oriw",    one(0000100),        one(0177700),        "#w$s"},
  335. {"oriw",    one(0000174),        one(0177777),        "#wSs"},    /* ori to sr */
  336. {"orl",        one(0000200),        one(0177700),        "#l$s"},
  337. {"orl",        one(0100200),        one(0170700),        ";lDd"},    /* memory to register */
  338. {"orl",        one(0100600),        one(0170700),        "Dd~s"},    /* register to memory */
  339. {"orw",        one(0000100),        one(0177700),        "#w$s"},
  340. {"orw",        one(0000174),        one(0177777),        "#wSs"},    /* ori to sr */
  341. {"orw",        one(0100100),        one(0170700),        ";wDd"},    /* memory to register */
  342. {"orw",        one(0100500),        one(0170700),        "Dd~s"},    /* register to memory */
  343.  
  344. {"pack",    one(0100500),        one(0170770),        "DsDd#w"},    /* pack Ds,    Dd,    #w */
  345. {"pack",    one(0100510),        one(0170770),        "-s-d#w"},    /* pack -(As),    -(Ad),    #w */
  346. {"pea",        one(0044100),        one(0177700),        "!s"},
  347. {"reset",    one(0047160),        one(0177777),        ""},
  348.  
  349. {"rolb",    one(0160430),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  350. {"rolb",    one(0160470),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  351. {"roll",    one(0160630),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  352. {"roll",    one(0160670),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  353. {"rolw",    one(0160530),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  354. {"rolw",    one(0160570),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  355. {"rolw",    one(0163700),        one(0177700),        "~s"},    /* Rotate memory */
  356. {"rorb",    one(0160030),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  357. {"rorb",    one(0160070),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  358. {"rorl",    one(0160230),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  359. {"rorl",    one(0160270),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  360. {"rorw",    one(0160130),        one(0170770),        "QdDs"},    /* rorb #Q,    Ds */
  361. {"rorw",    one(0160170),        one(0170770),        "DdDs"},    /* rorb Dd,    Ds */
  362. {"rorw",    one(0163300),        one(0177700),        "~s"},    /* Rotate memory */
  363.  
  364. {"roxlb",    one(0160420),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  365. {"roxlb",    one(0160460),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  366. {"roxll",    one(0160620),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  367. {"roxll",    one(0160660),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  368. {"roxlw",    one(0160520),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  369. {"roxlw",    one(0160560),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  370. {"roxlw",    one(0162700),        one(0177700),        "~s"},    /* Rotate memory */
  371. {"roxrb",    one(0160020),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  372. {"roxrb",    one(0160060),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  373. {"roxrl",    one(0160220),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  374. {"roxrl",    one(0160260),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  375. {"roxrw",    one(0160120),        one(0170770),        "QdDs"},    /* roxrb #Q,    Ds */
  376. {"roxrw",    one(0160160),        one(0170770),        "DdDs"},    /* roxrb Dd,    Ds */
  377. {"roxrw",    one(0162300),        one(0177700),        "~s"},    /* Rotate memory */
  378.  
  379. {"rtd",        one(0047164),        one(0177777),        "#w"},
  380. {"rte",        one(0047163),        one(0177777),        ""},
  381. {"rtm",        one(0003300),        one(0177760),        "Rs"},
  382. {"rtr",        one(0047167),        one(0177777),        ""},
  383. {"rts",        one(0047165),        one(0177777),        ""},
  384.  
  385. {"scc",        one(0052300),        one(0177700),        "$s"},
  386. {"scs",        one(0052700),        one(0177700),        "$s"},
  387. {"seq",        one(0053700),        one(0177700),        "$s"},
  388. {"sf",        one(0050700),        one(0177700),        "$s"},
  389. {"sge",        one(0056300),        one(0177700),        "$s"},
  390. {"sgt",        one(0057300),        one(0177700),        "$s"},
  391. {"shi",        one(0051300),        one(0177700),        "$s"},
  392. {"sle",        one(0057700),        one(0177700),        "$s"},
  393. {"sls",        one(0051700),        one(0177700),        "$s"},
  394. {"slt",        one(0056700),        one(0177700),        "$s"},
  395. {"smi",        one(0055700),        one(0177700),        "$s"},
  396. {"sne",        one(0053300),        one(0177700),        "$s"},
  397. {"spl",        one(0055300),        one(0177700),        "$s"},
  398. {"st",        one(0050300),        one(0177700),        "$s"},
  399. {"svc",        one(0054300),        one(0177700),        "$s"},
  400. {"svs",        one(0054700),        one(0177700),        "$s"},
  401.  
  402. {"sbcd",    one(0100400),        one(0170770),        "DsDd"},
  403. {"sbcd",    one(0100410),        one(0170770),        "-s-d"},
  404. {"stop",    one(0047162),        one(0177777),        "#w"},
  405.  
  406. {"subal",    one(0110700),        one(0170700),        "*lAd"},
  407. {"subaw",    one(0110300),        one(0170700),        "*wAd"},
  408. {"subb",    one(0050400),        one(0170700),        "Qd%s"},    /* subq written as sub */
  409. {"subb",    one(0002000),        one(0177700),        "#b$s"},    /* subi written as sub */
  410. {"subb",    one(0110000),        one(0170700),        ";bDd"},    /* subb ? ?,    Dd */
  411. {"subb",    one(0110400),        one(0170700),        "Dd~s"},    /* subb Dd,    ? ? */
  412. {"subib",    one(0002000),        one(0177700),        "#b$s"},
  413. {"subil",    one(0002200),        one(0177700),        "#l$s"},
  414. {"subiw",    one(0002100),        one(0177700),        "#w$s"},
  415. {"subl",    one(0050600),        one(0170700),        "Qd%s"},
  416. {"subl",    one(0002200),        one(0177700),        "#l$s"},
  417. {"subl",    one(0110700),        one(0170700),        "*lAd"},
  418. {"subl",    one(0110200),        one(0170700),        "*lDd"},
  419. {"subl",    one(0110600),        one(0170700),        "Dd~s"},
  420. {"subqb",    one(0050400),        one(0170700),        "Qd%s"},
  421. {"subql",    one(0050600),        one(0170700),        "Qd%s"},
  422. {"subqw",    one(0050500),        one(0170700),        "Qd%s"},
  423. {"subw",    one(0050500),        one(0170700),        "Qd%s"},
  424. {"subw",    one(0002100),        one(0177700),        "#w$s"},
  425. {"subw",    one(0110100),        one(0170700),        "*wDd"},
  426. {"subw",    one(0110300),        one(0170700),        "*wAd"},    /* suba written as sub */
  427. {"subw",    one(0110500),        one(0170700),        "Dd~s"},
  428. {"subxb",    one(0110400),        one(0170770),        "DsDd"},    /* subxb Ds,    Dd */
  429. {"subxb",    one(0110410),        one(0170770),        "-s-d"},    /* subxb -(As),    -(Ad) */
  430. {"subxl",    one(0110600),        one(0170770),        "DsDd"},
  431. {"subxl",    one(0110610),        one(0170770),        "-s-d"},
  432. {"subxw",    one(0110500),        one(0170770),        "DsDd"},
  433. {"subxw",    one(0110510),        one(0170770),        "-s-d"},
  434.  
  435. {"swap",    one(0044100),        one(0177770),        "Ds"},
  436.     
  437. {"tas",        one(0045300),        one(0177700),        "$s"},
  438. {"trap",    one(0047100),        one(0177760),        "Ts"},
  439.  
  440. {"trapcc",    one(0052374),        one(0177777),        ""},
  441. {"trapcs",    one(0052774),        one(0177777),        ""},
  442. {"trapeq",    one(0053774),        one(0177777),        ""},
  443. {"trapf",    one(0050774),        one(0177777),        ""},
  444. {"trapge",    one(0056374),        one(0177777),        ""},
  445. {"trapgt",    one(0057374),        one(0177777),        ""},
  446. {"traphi",    one(0051374),        one(0177777),        ""},
  447. {"traple",    one(0057774),        one(0177777),        ""},
  448. {"trapls",    one(0051774),        one(0177777),        ""},
  449. {"traplt",    one(0056774),        one(0177777),        ""},
  450. {"trapmi",    one(0055774),        one(0177777),        ""},
  451. {"trapne",    one(0053374),        one(0177777),        ""},
  452. {"trappl",    one(0055374),        one(0177777),        ""},
  453. {"trapt",    one(0050374),        one(0177777),        ""},
  454. {"trapvc",    one(0054374),        one(0177777),        ""},
  455. {"trapvs",    one(0054774),        one(0177777),        ""},
  456.  
  457. {"trapcc.w",    one(0052372),        one(0177777),        ""},
  458. {"trapcs.w",    one(0052772),        one(0177777),        ""},
  459. {"trapeq.w",    one(0053772),        one(0177777),        ""},
  460. {"trapf.w",    one(0050772),        one(0177777),        ""},
  461. {"trapge.w",    one(0056372),        one(0177777),        ""},
  462. {"trapgt.w",    one(0057372),        one(0177777),        ""},
  463. {"traphi.w",    one(0051372),        one(0177777),        ""},
  464. {"traple.w",    one(0057772),        one(0177777),        ""},
  465. {"trapls.w",    one(0051772),        one(0177777),        ""},
  466. {"traplt.w",    one(0056772),        one(0177777),        ""},
  467. {"trapmi.w",    one(0055772),        one(0177777),        ""},
  468. {"trapne.w",    one(0053372),        one(0177777),        ""},
  469. {"trappl.w",    one(0055372),        one(0177777),        ""},
  470. {"trapt.w",    one(0050372),        one(0177777),        ""},
  471. {"trapvc.w",    one(0054372),        one(0177777),        ""},
  472. {"trapvs.w",    one(0054772),        one(0177777),        ""},
  473.  
  474. {"trapcc.l",    one(0052373),        one(0177777),        ""},
  475. {"trapcs.l",    one(0052773),        one(0177777),        ""},
  476. {"trapeq.l",    one(0053773),        one(0177777),        ""},
  477. {"trapf.l",    one(0050773),        one(0177777),        ""},
  478. {"trapge.l",    one(0056373),        one(0177777),        ""},
  479. {"trapgt.l",    one(0057373),        one(0177777),        ""},
  480. {"traphi.l",    one(0051373),        one(0177777),        ""},
  481. {"traple.l",    one(0057773),        one(0177777),        ""},
  482. {"trapls.l",    one(0051773),        one(0177777),        ""},
  483. {"traplt.l",    one(0056773),        one(0177777),        ""},
  484. {"trapmi.l",    one(0055773),        one(0177777),        ""},
  485. {"trapne.l",    one(0053373),        one(0177777),        ""},
  486. {"trappl.l",    one(0055373),        one(0177777),        ""},
  487. {"trapt.l",    one(0050373),        one(0177777),        ""},
  488. {"trapvc.l",    one(0054373),        one(0177777),        ""},
  489. {"trapvs.l",    one(0054773),        one(0177777),        ""},
  490.  
  491. {"trapv",    one(0047166),        one(0177777),        ""},
  492.  
  493. {"tstb",    one(0045000),        one(0177700),        ";b"},
  494. {"tstw",    one(0045100),        one(0177700),        "*w"},
  495. {"tstl",    one(0045200),        one(0177700),        "*l"},
  496.  
  497. {"unlk",    one(0047130),        one(0177770),        "As"},
  498. {"unpk",    one(0100600),        one(0170770),        "DsDd#w"},
  499. {"unpk",    one(0100610),        one(0170770),        "-s-d#w"},
  500.     /* JF floating pt stuff moved down here */
  501.  
  502. {"fabsb",    two(0xF000, 0x5818),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  503. {"fabsd",    two(0xF000, 0x5418),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  504. {"fabsl",    two(0xF000, 0x4018),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  505. {"fabsp",    two(0xF000, 0x4C18),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  506. {"fabss",    two(0xF000, 0x4418),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  507. {"fabsw",    two(0xF000, 0x5018),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  508. {"fabsx",    two(0xF000, 0x0018),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  509. {"fabsx",    two(0xF000, 0x4818),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  510. {"fabsx",    two(0xF000, 0x0018),    two(0xF1C0, 0xE07F),    "IiFt"},
  511.  
  512. {"facosb",    two(0xF000, 0x581C),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  513. {"facosd",    two(0xF000, 0x541C),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  514. {"facosl",    two(0xF000, 0x401C),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  515. {"facosp",    two(0xF000, 0x4C1C),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  516. {"facoss",    two(0xF000, 0x441C),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  517. {"facosw",    two(0xF000, 0x501C),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  518. {"facosx",    two(0xF000, 0x001C),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  519. {"facosx",    two(0xF000, 0x481C),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  520. {"facosx",    two(0xF000, 0x001C),    two(0xF1C0, 0xE07F),    "IiFt"},
  521.  
  522. {"faddb",    two(0xF000, 0x5822),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  523. {"faddd",    two(0xF000, 0x5422),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  524. {"faddl",    two(0xF000, 0x4022),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  525. {"faddp",    two(0xF000, 0x4C22),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  526. {"fadds",    two(0xF000, 0x4422),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  527. {"faddw",    two(0xF000, 0x5022),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  528. {"faddx",    two(0xF000, 0x0022),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  529. {"faddx",    two(0xF000, 0x4822),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  530. /* {"faddx",    two(0xF000, 0x0022),    two(0xF1C0, 0xE07F),    "IiFt"}, JF removed */
  531.  
  532. {"fasinb",    two(0xF000, 0x580C),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  533. {"fasind",    two(0xF000, 0x540C),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  534. {"fasinl",    two(0xF000, 0x400C),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  535. {"fasinp",    two(0xF000, 0x4C0C),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  536. {"fasins",    two(0xF000, 0x440C),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  537. {"fasinw",    two(0xF000, 0x500C),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  538. {"fasinx",    two(0xF000, 0x000C),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  539. {"fasinx",    two(0xF000, 0x480C),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  540. {"fasinx",    two(0xF000, 0x000C),    two(0xF1C0, 0xE07F),    "IiFt"},
  541.  
  542. {"fatanb",    two(0xF000, 0x580A),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  543. {"fatand",    two(0xF000, 0x540A),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  544. {"fatanl",    two(0xF000, 0x400A),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  545. {"fatanp",    two(0xF000, 0x4C0A),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  546. {"fatans",    two(0xF000, 0x440A),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  547. {"fatanw",    two(0xF000, 0x500A),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  548. {"fatanx",    two(0xF000, 0x000A),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  549. {"fatanx",    two(0xF000, 0x480A),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  550. {"fatanx",    two(0xF000, 0x000A),    two(0xF1C0, 0xE07F),    "IiFt"},
  551.  
  552. {"fatanhb",    two(0xF000, 0x580D),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  553. {"fatanhd",    two(0xF000, 0x540D),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  554. {"fatanhl",    two(0xF000, 0x400D),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  555. {"fatanhp",    two(0xF000, 0x4C0D),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  556. {"fatanhs",    two(0xF000, 0x440D),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  557. {"fatanhw",    two(0xF000, 0x500D),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  558. {"fatanhx",    two(0xF000, 0x000D),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  559. {"fatanhx",    two(0xF000, 0x480D),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  560. {"fatanhx",    two(0xF000, 0x000D),    two(0xF1C0, 0xE07F),    "IiFt"},
  561.  
  562. {"fbeq",    one(0xF081),        one(0xF1BF),        "IdBc"},
  563. {"fbf",        one(0xF080),        one(0xF1BF),        "IdBc"},
  564. {"fbge",    one(0xF093),        one(0xF1BF),        "IdBc"},
  565. {"fbgl",    one(0xF096),        one(0xF1BF),        "IdBc"},
  566. {"fbgle",    one(0xF097),        one(0xF1BF),        "IdBc"},
  567. {"fbgt",    one(0xF092),        one(0xF1BF),        "IdBc"},
  568. {"fble",    one(0xF095),        one(0xF1BF),        "IdBc"},
  569. {"fblt",    one(0xF094),        one(0xF1BF),        "IdBc"},
  570. {"fbne",    one(0xF08E),        one(0xF1BF),        "IdBc"},
  571. {"fbnge",    one(0xF09C),        one(0xF1BF),        "IdBc"},
  572. {"fbngl",    one(0xF099),        one(0xF1BF),        "IdBc"},
  573. {"fbngle",    one(0xF098),        one(0xF1BF),        "IdBc"},
  574. {"fbngt",    one(0xF09D),        one(0xF1BF),        "IdBc"},
  575. {"fbnle",    one(0xF09A),        one(0xF1BF),        "IdBc"},
  576. {"fbnlt",    one(0xF09B),        one(0xF1BF),        "IdBc"},
  577. {"fboge",    one(0xF083),        one(0xF1BF),        "IdBc"},
  578. {"fbogl",    one(0xF086),        one(0xF1BF),        "IdBc"},
  579. {"fbogt",    one(0xF082),        one(0xF1BF),        "IdBc"},
  580. {"fbole",    one(0xF085),        one(0xF1BF),        "IdBc"},
  581. {"fbolt",    one(0xF084),        one(0xF1BF),        "IdBc"},
  582. {"fbor",    one(0xF087),        one(0xF1BF),        "IdBc"},
  583. {"fbseq",    one(0xF091),        one(0xF1BF),        "IdBc"},
  584. {"fbsf",    one(0xF090),        one(0xF1BF),        "IdBc"},
  585. {"fbsne",    one(0xF09E),        one(0xF1BF),        "IdBc"},
  586. {"fbst",    one(0xF09F),        one(0xF1BF),        "IdBc"},
  587. {"fbt",        one(0xF08F),        one(0xF1BF),        "IdBc"},
  588. {"fbueq",    one(0xF089),        one(0xF1BF),        "IdBc"},
  589. {"fbuge",    one(0xF08B),        one(0xF1BF),        "IdBc"},
  590. {"fbugt",    one(0xF08A),        one(0xF1BF),        "IdBc"},
  591. {"fbule",    one(0xF08D),        one(0xF1BF),        "IdBc"},
  592. {"fbult",    one(0xF08C),        one(0xF1BF),        "IdBc"},
  593. {"fbun",    one(0xF088),        one(0xF1BF),        "IdBc"},
  594.  
  595. {"fcmpb",    two(0xF000, 0x5838),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  596. {"fcmpd",    two(0xF000, 0x5438),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  597. {"fcmpl",    two(0xF000, 0x4038),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  598. {"fcmpp",    two(0xF000, 0x4C38),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  599. {"fcmps",    two(0xF000, 0x4438),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  600. {"fcmpw",    two(0xF000, 0x5038),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  601. {"fcmpx",    two(0xF000, 0x0038),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  602. {"fcmpx",    two(0xF000, 0x4838),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  603. /* {"fcmpx",    two(0xF000, 0x0038),    two(0xF1C0, 0xE07F),    "IiFt"}, JF removed */
  604.  
  605. {"fcosb",    two(0xF000, 0x581D),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  606. {"fcosd",    two(0xF000, 0x541D),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  607. {"fcosl",    two(0xF000, 0x401D),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  608. {"fcosp",    two(0xF000, 0x4C1D),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  609. {"fcoss",    two(0xF000, 0x441D),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  610. {"fcosw",    two(0xF000, 0x501D),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  611. {"fcosx",    two(0xF000, 0x001D),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  612. {"fcosx",    two(0xF000, 0x481D),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  613. {"fcosx",    two(0xF000, 0x001D),    two(0xF1C0, 0xE07F),    "IiFt"},
  614.  
  615. {"fcoshb",    two(0xF000, 0x5819),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  616. {"fcoshd",    two(0xF000, 0x5419),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  617. {"fcoshl",    two(0xF000, 0x4019),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  618. {"fcoshp",    two(0xF000, 0x4C19),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  619. {"fcoshs",    two(0xF000, 0x4419),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  620. {"fcoshw",    two(0xF000, 0x5019),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  621. {"fcoshx",    two(0xF000, 0x0019),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  622. {"fcoshx",    two(0xF000, 0x4819),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  623. {"fcoshx",    two(0xF000, 0x0019),    two(0xF1C0, 0xE07F),    "IiFt"},
  624.  
  625. {"fdbeq",    two(0xF048, 0x0001),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  626. {"fdbf",    two(0xF048, 0x0000),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  627. {"fdbge",    two(0xF048, 0x0013),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  628. {"fdbgl",    two(0xF048, 0x0016),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  629. {"fdbgle",    two(0xF048, 0x0017),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  630. {"fdbgt",    two(0xF048, 0x0012),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  631. {"fdble",    two(0xF048, 0x0015),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  632. {"fdblt",    two(0xF048, 0x0014),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  633. {"fdbne",    two(0xF048, 0x000E),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  634. {"fdbnge",    two(0xF048, 0x001C),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  635. {"fdbngl",    two(0xF048, 0x0019),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  636. {"fdbngle",    two(0xF048, 0x0018),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  637. {"fdbngt",    two(0xF048, 0x001D),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  638. {"fdbnle",    two(0xF048, 0x001A),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  639. {"fdbnlt",    two(0xF048, 0x001B),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  640. {"fdboge",    two(0xF048, 0x0003),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  641. {"fdbogl",    two(0xF048, 0x0006),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  642. {"fdbogt",    two(0xF048, 0x0002),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  643. {"fdbole",    two(0xF048, 0x0005),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  644. {"fdbolt",    two(0xF048, 0x0004),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  645. {"fdbor",    two(0xF048, 0x0007),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  646. {"fdbseq",    two(0xF048, 0x0011),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  647. {"fdbsf",    two(0xF048, 0x0010),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  648. {"fdbsne",    two(0xF048, 0x001E),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  649. {"fdbst",    two(0xF048, 0x001F),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  650. {"fdbt",    two(0xF048, 0x000F),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  651. {"fdbueq",    two(0xF048, 0x0009),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  652. {"fdbuge",    two(0xF048, 0x000B),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  653. {"fdbugt",    two(0xF048, 0x000A),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  654. {"fdbule",    two(0xF048, 0x000D),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  655. {"fdbult",    two(0xF048, 0x000C),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  656. {"fdbun",    two(0xF048, 0x0008),    two(0xF1F8, 0xFFFF),    "IiDsBw"},
  657.  
  658. {"fdivb",    two(0xF000, 0x5820),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  659. {"fdivd",    two(0xF000, 0x5420),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  660. {"fdivl",    two(0xF000, 0x4020),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  661. {"fdivp",    two(0xF000, 0x4C20),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  662. {"fdivs",    two(0xF000, 0x4420),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  663. {"fdivw",    two(0xF000, 0x5020),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  664. {"fdivx",    two(0xF000, 0x0020),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  665. {"fdivx",    two(0xF000, 0x4820),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  666. /* {"fdivx",    two(0xF000, 0x0020),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  667.  
  668. {"fetoxb",    two(0xF000, 0x5810),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  669. {"fetoxd",    two(0xF000, 0x5410),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  670. {"fetoxl",    two(0xF000, 0x4010),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  671. {"fetoxp",    two(0xF000, 0x4C10),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  672. {"fetoxs",    two(0xF000, 0x4410),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  673. {"fetoxw",    two(0xF000, 0x5010),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  674. {"fetoxx",    two(0xF000, 0x0010),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  675. {"fetoxx",    two(0xF000, 0x4810),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  676. {"fetoxx",    two(0xF000, 0x0010),    two(0xF1C0, 0xE07F),    "IiFt"},
  677.  
  678. {"fetoxm1b",    two(0xF000, 0x5808),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  679. {"fetoxm1d",    two(0xF000, 0x5408),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  680. {"fetoxm1l",    two(0xF000, 0x4008),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  681. {"fetoxm1p",    two(0xF000, 0x4C08),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  682. {"fetoxm1s",    two(0xF000, 0x4408),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  683. {"fetoxm1w",    two(0xF000, 0x5008),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  684. {"fetoxm1x",    two(0xF000, 0x0008),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  685. {"fetoxm1x",    two(0xF000, 0x4808),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  686. {"fetoxm1x",    two(0xF000, 0x0008),    two(0xF1C0, 0xE07F),    "IiFt"},
  687.  
  688. {"fgetexpb",    two(0xF000, 0x581E),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  689. {"fgetexpd",    two(0xF000, 0x541E),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  690. {"fgetexpl",    two(0xF000, 0x401E),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  691. {"fgetexpp",    two(0xF000, 0x4C1E),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  692. {"fgetexps",    two(0xF000, 0x441E),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  693. {"fgetexpw",    two(0xF000, 0x501E),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  694. {"fgetexpx",    two(0xF000, 0x001E),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  695. {"fgetexpx",    two(0xF000, 0x481E),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  696. {"fgetexpx",    two(0xF000, 0x001E),    two(0xF1C0, 0xE07F),    "IiFt"},
  697.  
  698. {"fgetmanb",    two(0xF000, 0x581F),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  699. {"fgetmand",    two(0xF000, 0x541F),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  700. {"fgetmanl",    two(0xF000, 0x401F),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  701. {"fgetmanp",    two(0xF000, 0x4C1F),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  702. {"fgetmans",    two(0xF000, 0x441F),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  703. {"fgetmanw",    two(0xF000, 0x501F),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  704. {"fgetmanx",    two(0xF000, 0x001F),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  705. {"fgetmanx",    two(0xF000, 0x481F),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  706. {"fgetmanx",    two(0xF000, 0x001F),    two(0xF1C0, 0xE07F),    "IiFt"},
  707.  
  708. {"fintb",    two(0xF000, 0x5801),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  709. {"fintd",    two(0xF000, 0x5401),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  710. {"fintl",    two(0xF000, 0x4001),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  711. {"fintp",    two(0xF000, 0x4C01),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  712. {"fints",    two(0xF000, 0x4401),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  713. {"fintw",    two(0xF000, 0x5001),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  714. {"fintx",    two(0xF000, 0x0001),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  715. {"fintx",    two(0xF000, 0x4801),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  716. {"fintx",    two(0xF000, 0x0001),    two(0xF1C0, 0xE07F),    "IiFt"},
  717.  
  718. {"fintrzb",    two(0xF000, 0x5803),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  719. {"fintrzd",    two(0xF000, 0x5403),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  720. {"fintrzl",    two(0xF000, 0x4003),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  721. {"fintrzp",    two(0xF000, 0x4C03),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  722. {"fintrzs",    two(0xF000, 0x4403),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  723. {"fintrzw",    two(0xF000, 0x5003),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  724. {"fintrzx",    two(0xF000, 0x0003),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  725. {"fintrzx",    two(0xF000, 0x4803),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  726. {"fintrzx",    two(0xF000, 0x0003),    two(0xF1C0, 0xE07F),    "IiFt"},
  727.  
  728. {"flog10b",    two(0xF000, 0x5815),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  729. {"flog10d",    two(0xF000, 0x5415),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  730. {"flog10l",    two(0xF000, 0x4015),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  731. {"flog10p",    two(0xF000, 0x4C15),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  732. {"flog10s",    two(0xF000, 0x4415),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  733. {"flog10w",    two(0xF000, 0x5015),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  734. {"flog10x",    two(0xF000, 0x0015),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  735. {"flog10x",    two(0xF000, 0x4815),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  736. {"flog10x",    two(0xF000, 0x0015),    two(0xF1C0, 0xE07F),    "IiFt"},
  737.  
  738. {"flog2b",    two(0xF000, 0x5816),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  739. {"flog2d",    two(0xF000, 0x5416),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  740. {"flog2l",    two(0xF000, 0x4016),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  741. {"flog2p",    two(0xF000, 0x4C16),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  742. {"flog2s",    two(0xF000, 0x4416),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  743. {"flog2w",    two(0xF000, 0x5016),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  744. {"flog2x",    two(0xF000, 0x0016),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  745. {"flog2x",    two(0xF000, 0x4816),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  746. {"flog2x",    two(0xF000, 0x0016),    two(0xF1C0, 0xE07F),    "IiFt"},
  747.  
  748. {"flognb",    two(0xF000, 0x5814),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  749. {"flognd",    two(0xF000, 0x5414),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  750. {"flognl",    two(0xF000, 0x4014),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  751. {"flognp",    two(0xF000, 0x4C14),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  752. {"flogns",    two(0xF000, 0x4414),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  753. {"flognw",    two(0xF000, 0x5014),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  754. {"flognx",    two(0xF000, 0x0014),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  755. {"flognx",    two(0xF000, 0x4814),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  756. {"flognx",    two(0xF000, 0x0014),    two(0xF1C0, 0xE07F),    "IiFt"},
  757.  
  758. {"flognp1b",    two(0xF000, 0x5806),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  759. {"flognp1d",    two(0xF000, 0x5406),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  760. {"flognp1l",    two(0xF000, 0x4006),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  761. {"flognp1p",    two(0xF000, 0x4C06),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  762. {"flognp1s",    two(0xF000, 0x4406),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  763. {"flognp1w",    two(0xF000, 0x5006),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  764. {"flognp1x",    two(0xF000, 0x0006),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  765. {"flognp1x",    two(0xF000, 0x4806),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  766. {"flognp1x",    two(0xF000, 0x0006),    two(0xF1C0, 0xE07F),    "IiFt"},
  767.  
  768. {"fmodb",    two(0xF000, 0x5821),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  769. {"fmodd",    two(0xF000, 0x5421),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  770. {"fmodl",    two(0xF000, 0x4021),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  771. {"fmodp",    two(0xF000, 0x4C21),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  772. {"fmods",    two(0xF000, 0x4421),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  773. {"fmodw",    two(0xF000, 0x5021),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  774. {"fmodx",    two(0xF000, 0x0021),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  775. {"fmodx",    two(0xF000, 0x4821),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  776. /* {"fmodx",    two(0xF000, 0x0021),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  777.  
  778. {"fmoveb",    two(0xF000, 0x5800),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},        /* fmove from <ea> to fp<n> */
  779. {"fmoveb",    two(0xF000, 0x7800),    two(0xF1C0, 0xFC7F),    "IiF7@b"},        /* fmove from fp<n> to <ea> */
  780. {"fmoved",    two(0xF000, 0x5400),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},        /* fmove from <ea> to fp<n> */
  781. {"fmoved",    two(0xF000, 0x7400),    two(0xF1C0, 0xFC7F),    "IiF7@F"},        /* fmove from fp<n> to <ea> */
  782. {"fmovel",    two(0xF000, 0x4000),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},        /* fmove from <ea> to fp<n> */
  783. {"fmovel",    two(0xF000, 0x6000),    two(0xF1C0, 0xFC7F),    "IiF7@l"},        /* fmove from fp<n> to <ea> */
  784. /* Warning:  The addressing modes on these are probably not right:
  785.    esp, Areg direct is only allowed for FPI */
  786.         /* fmove.l from/to system control registers: */
  787. {"fmovel",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  788. {"fmovel",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ls8"},
  789.  
  790. /* {"fmovel",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  791. {"fmovel",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*ss8"}, */
  792.  
  793. {"fmovep",    two(0xF000, 0x4C00),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},        /* fmove from <ea> to fp<n> */
  794. {"fmovep",    two(0xF000, 0x6C00),    two(0xF1C0, 0xFC00),    "IiF7@pkC"},        /* fmove.p with k-factors: */
  795. {"fmovep",    two(0xF000, 0x7C00),    two(0xF1C0, 0xFC0F),    "IiF7@pDk"},        /* fmove.p with k-factors: */
  796.  
  797. {"fmoves",    two(0xF000, 0x4400),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},        /* fmove from <ea> to fp<n> */
  798. {"fmoves",    two(0xF000, 0x6400),    two(0xF1C0, 0xFC7F),    "IiF7@f"},        /* fmove from fp<n> to <ea> */
  799. {"fmovew",    two(0xF000, 0x5000),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},        /* fmove from <ea> to fp<n> */
  800. {"fmovew",    two(0xF000, 0x7000),    two(0xF1C0, 0xFC7F),    "IiF7@w"},        /* fmove from fp<n> to <ea> */
  801. {"fmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiF8F7"},        /* fmove from <ea> to fp<n> */
  802. {"fmovex",    two(0xF000, 0x4800),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},        /* fmove from <ea> to fp<n> */
  803. {"fmovex",    two(0xF000, 0x6800),    two(0xF1C0, 0xFC7F),    "IiF7@x"},        /* fmove from fp<n> to <ea> */
  804. /* JF removed {"fmovex",    two(0xF000, 0x0000),    two(0xF1C0, 0xE07F),    "IiFt"},        / * fmove from <ea> to fp<n> */
  805.  
  806. {"fmovecrx",    two(0xF000, 0x5C00),    two(0xF1FF, 0xFC00),    "Ii#CF7"},        /* fmovecr.x #ccc,    FPn */
  807. {"fmovecr",    two(0xF000, 0x5C00),    two(0xF1FF, 0xFC00),    "Ii#CF7"},
  808.  
  809. /* Other fmovemx.  */
  810. {"fmovemx",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "IdL3-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  811. {"fmovemx",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "Id#3-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  812.  
  813. {"fmovemx",    two(0xF020, 0xE800),    two(0xF1F8, 0xFF8F),    "IiDk-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  814.  
  815. {"fmovemx",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Id#3&s"},        /* fmovem.x to control,    static and dynamic: */
  816. {"fmovemx",    two(0xF000, 0xF800),    two(0xF1C0, 0xFF8F),    "IiDk&s"},        /* fmovem.x to control,    static and dynamic: */
  817. {"fmovemx",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&s#3"},        /* fmovem.x from control,    static and dynamic: */
  818. {"fmovemx",    two(0xF000, 0xD800),    two(0xF1C0, 0xFF8F),    "Ii&sDk"},        /* fmovem.x from control,    static and dynamic: */
  819. {"fmovemx",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Idl3&s"},        /* fmovem.x to control,    static and dynamic: */
  820. {"fmovemx",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&sl3"},        /* fmovem.x from control,    static and dynamic: */
  821.  
  822. {"fmovemx",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+sl3"},        /* fmovem.x from autoincrement,    static and dynamic: */
  823. {"fmovemx",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+s#3"},        /* fmovem.x from autoincrement,    static and dynamic: */
  824. {"fmovemx",    two(0xF018, 0xD800),    two(0xF1F8, 0xFF8F),    "Ii+sDk"},        /* fmovem.x from autoincrement,    static and dynamic: */
  825.  
  826. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s"},
  827. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Ii#8@s"},
  828. {"fmoveml",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  829.  
  830. {"fmoveml",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8"},
  831. {"fmoveml",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*s#8"},
  832. {"fmoveml",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8"},
  833.  
  834. /* fmovemx with register lists */
  835. {"fmovem",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "IdL3-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  836. {"fmovem",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Idl3&s"},        /* fmovem.x to control,    static and dynamic: */
  837. {"fmovem",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+sl3"},        /* fmovem.x from autoincrement,    static and dynamic: */
  838. {"fmovem",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&sl3"},        /* fmovem.x from control,    static and dynamic: */
  839.  
  840.     /* Alternate mnemonics for GNU as and GNU CC */
  841. {"fmovem",    two(0xF020, 0xE000),    two(0xF1F8, 0xFF00),    "Id#3-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  842. {"fmovem",    two(0xF020, 0xE800),    two(0xF1F8, 0xFF8F),    "IiDk-s"},        /* fmovem.x to autodecrement,    static and dynamic */
  843.  
  844. {"fmovem",    two(0xF000, 0xF000),    two(0xF1C0, 0xFF00),    "Id#3&s"},        /* fmovem.x to control,    static and dynamic: */
  845. {"fmovem",    two(0xF000, 0xF800),    two(0xF1C0, 0xFF8F),    "IiDk&s"},        /* fmovem.x to control,    static and dynamic: */
  846.  
  847. {"fmovem",    two(0xF018, 0xD000),    two(0xF1F8, 0xFF00),    "Id+s#3"},        /* fmovem.x from autoincrement,    static and dynamic: */
  848. {"fmovem",    two(0xF018, 0xD800),    two(0xF1F8, 0xFF8F),    "Ii+sDk"},        /* fmovem.x from autoincrement,    static and dynamic: */
  849.   
  850. {"fmovem",    two(0xF000, 0xD000),    two(0xF1C0, 0xFF00),    "Id&s#3"},        /* fmovem.x from control,    static and dynamic: */
  851. {"fmovem",    two(0xF000, 0xD800),    two(0xF1C0, 0xFF8F),    "Ii&sDk"},        /* fmovem.x from control,    static and dynamic: */
  852.  
  853. /* fmoveml a FP-control register */
  854. {"fmovem",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "Iis8@s"},
  855. {"fmovem",    two(0xF000, 0x8000),    two(0xF1C0, 0xE3FF),    "Ii*ss8"},
  856.  
  857. /* fmoveml a FP-control reglist */
  858. {"fmovem",    two(0xF000, 0xA000),    two(0xF1C0, 0xE3FF),    "IiL8@s"},
  859. {"fmovem",    two(0xF000, 0x8000),    two(0xF2C0, 0xE3FF),    "Ii*sL8"},
  860.  
  861. {"fmulb",    two(0xF000, 0x5823),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  862. {"fmuld",    two(0xF000, 0x5423),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  863. {"fmull",    two(0xF000, 0x4023),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  864. {"fmulp",    two(0xF000, 0x4C23),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  865. {"fmuls",    two(0xF000, 0x4423),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  866. {"fmulw",    two(0xF000, 0x5023),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  867. {"fmulx",    two(0xF000, 0x0023),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  868. {"fmulx",    two(0xF000, 0x4823),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  869. /* {"fmulx",    two(0xF000, 0x0023),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  870.  
  871. {"fnegb",    two(0xF000, 0x581A),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  872. {"fnegd",    two(0xF000, 0x541A),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  873. {"fnegl",    two(0xF000, 0x401A),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  874. {"fnegp",    two(0xF000, 0x4C1A),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  875. {"fnegs",    two(0xF000, 0x441A),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  876. {"fnegw",    two(0xF000, 0x501A),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  877. {"fnegx",    two(0xF000, 0x001A),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  878. {"fnegx",    two(0xF000, 0x481A),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  879. {"fnegx",    two(0xF000, 0x001A),    two(0xF1C0, 0xE07F),    "IiFt"},
  880.  
  881. {"fnop",    two(0xF280, 0x0000),    two(0xFFFF, 0xFFFF),    "Ii"},
  882.  
  883. {"fremb",    two(0xF000, 0x5825),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  884. {"fremd",    two(0xF000, 0x5425),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  885. {"freml",    two(0xF000, 0x4025),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  886. {"fremp",    two(0xF000, 0x4C25),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  887. {"frems",    two(0xF000, 0x4425),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  888. {"fremw",    two(0xF000, 0x5025),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  889. {"fremx",    two(0xF000, 0x0025),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  890. {"fremx",    two(0xF000, 0x4825),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  891. /* {"fremx",    two(0xF000, 0x0025),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  892.  
  893. {"frestore",    one(0xF140),        one(0xF1C0),        "Id&s"},
  894. {"frestore",    one(0xF158),        one(0xF1F8),        "Id+s"},
  895. {"fsave",    one(0xF100),        one(0xF1C0),        "Id&s"},
  896. {"fsave",    one(0xF120),        one(0xF1F8),        "Id-s"},
  897.  
  898. {"fsincosb",    two(0xF000, 0x5830),    two(0xF1C0, 0xFC78),    "Ii;bF3F7"},
  899. {"fsincosd",    two(0xF000, 0x5430),    two(0xF1C0, 0xFC78),    "Ii;FF3F7"},
  900. {"fsincosl",    two(0xF000, 0x4030),    two(0xF1C0, 0xFC78),    "Ii;lF3F7"},
  901. {"fsincosp",    two(0xF000, 0x4C30),    two(0xF1C0, 0xFC78),    "Ii;pF3F7"},
  902. {"fsincoss",    two(0xF000, 0x4430),    two(0xF1C0, 0xFC78),    "Ii;fF3F7"},
  903. {"fsincosw",    two(0xF000, 0x5030),    two(0xF1C0, 0xFC78),    "Ii;wF3F7"},
  904. {"fsincosx",    two(0xF000, 0x0030),    two(0xF1C0, 0xE078),    "IiF8F3F7"},
  905. {"fsincosx",    two(0xF000, 0x4830),    two(0xF1C0, 0xFC78),    "Ii;xF3F7"},
  906.  
  907. {"fscaleb",    two(0xF000, 0x5826),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  908. {"fscaled",    two(0xF000, 0x5426),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  909. {"fscalel",    two(0xF000, 0x4026),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  910. {"fscalep",    two(0xF000, 0x4C26),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  911. {"fscales",    two(0xF000, 0x4426),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  912. {"fscalew",    two(0xF000, 0x5026),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  913. {"fscalex",    two(0xF000, 0x0026),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  914. {"fscalex",    two(0xF000, 0x4826),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  915. /* {"fscalex",    two(0xF000, 0x0026),    two(0xF1C0, 0xE07F),    "IiFt"}, JF */
  916.  
  917. /* $ is necessary to prevent the assembler from using PC-relative.
  918.    If @ were used, "label: fseq label" could produce "ftrapeq",
  919.    because "label" became "pc@label".  */
  920. {"fseq",    two(0xF040, 0x0001),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  921. {"fsf",        two(0xF040, 0x0000),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  922. {"fsge",    two(0xF040, 0x0013),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  923. {"fsgl",    two(0xF040, 0x0016),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  924. {"fsgle",    two(0xF040, 0x0017),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  925. {"fsgt",    two(0xF040, 0x0012),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  926. {"fsle",    two(0xF040, 0x0015),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  927. {"fslt",    two(0xF040, 0x0014),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  928. {"fsne",    two(0xF040, 0x000E),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  929. {"fsnge",    two(0xF040, 0x001C),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  930. {"fsngl",    two(0xF040, 0x0019),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  931. {"fsngle",    two(0xF040, 0x0018),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  932. {"fsngt",    two(0xF040, 0x001D),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  933. {"fsnle",    two(0xF040, 0x001A),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  934. {"fsnlt",    two(0xF040, 0x001B),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  935. {"fsoge",    two(0xF040, 0x0003),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  936. {"fsogl",    two(0xF040, 0x0006),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  937. {"fsogt",    two(0xF040, 0x0002),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  938. {"fsole",    two(0xF040, 0x0005),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  939. {"fsolt",    two(0xF040, 0x0004),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  940. {"fsor",    two(0xF040, 0x0007),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  941. {"fsseq",    two(0xF040, 0x0011),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  942. {"fssf",    two(0xF040, 0x0010),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  943. {"fssne",    two(0xF040, 0x001E),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  944. {"fsst",    two(0xF040, 0x001F),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  945. {"fst",        two(0xF040, 0x000F),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  946. {"fsueq",    two(0xF040, 0x0009),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  947. {"fsuge",    two(0xF040, 0x000B),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  948. {"fsugt",    two(0xF040, 0x000A),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  949. {"fsule",    two(0xF040, 0x000D),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  950. {"fsult",    two(0xF040, 0x000C),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  951. {"fsun",    two(0xF040, 0x0008),    two(0xF1C0, 0xFFFF),    "Ii$s"},
  952.  
  953. {"fsgldivb",    two(0xF000, 0x5824),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  954. {"fsgldivd",    two(0xF000, 0x5424),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  955. {"fsgldivl",    two(0xF000, 0x4024),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  956. {"fsgldivp",    two(0xF000, 0x4C24),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  957. {"fsgldivs",    two(0xF000, 0x4424),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  958. {"fsgldivw",    two(0xF000, 0x5024),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  959. {"fsgldivx",    two(0xF000, 0x0024),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  960. {"fsgldivx",    two(0xF000, 0x4824),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  961. {"fsgldivx",    two(0xF000, 0x0024),    two(0xF1C0, 0xE07F),    "IiFt"},
  962.  
  963. {"fsglmulb",    two(0xF000, 0x5827),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  964. {"fsglmuld",    two(0xF000, 0x5427),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  965. {"fsglmull",    two(0xF000, 0x4027),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  966. {"fsglmulp",    two(0xF000, 0x4C27),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  967. {"fsglmuls",    two(0xF000, 0x4427),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  968. {"fsglmulw",    two(0xF000, 0x5027),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  969. {"fsglmulx",    two(0xF000, 0x0027),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  970. {"fsglmulx",    two(0xF000, 0x4827),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  971. {"fsglmulx",    two(0xF000, 0x0027),    two(0xF1C0, 0xE07F),    "IiFt"},
  972.  
  973. {"fsinb",    two(0xF000, 0x580E),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  974. {"fsind",    two(0xF000, 0x540E),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  975. {"fsinl",    two(0xF000, 0x400E),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  976. {"fsinp",    two(0xF000, 0x4C0E),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  977. {"fsins",    two(0xF000, 0x440E),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  978. {"fsinw",    two(0xF000, 0x500E),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  979. {"fsinx",    two(0xF000, 0x000E),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  980. {"fsinx",    two(0xF000, 0x480E),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  981. {"fsinx",    two(0xF000, 0x000E),    two(0xF1C0, 0xE07F),    "IiFt"},
  982.  
  983. {"fsinhb",    two(0xF000, 0x5802),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  984. {"fsinhd",    two(0xF000, 0x5402),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  985. {"fsinhl",    two(0xF000, 0x4002),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  986. {"fsinhp",    two(0xF000, 0x4C02),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  987. {"fsinhs",    two(0xF000, 0x4402),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  988. {"fsinhw",    two(0xF000, 0x5002),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  989. {"fsinhx",    two(0xF000, 0x0002),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  990. {"fsinhx",    two(0xF000, 0x4802),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  991. {"fsinhx",    two(0xF000, 0x0002),    two(0xF1C0, 0xE07F),    "IiFt"},
  992.  
  993. {"fsqrtb",    two(0xF000, 0x5804),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  994. {"fsqrtd",    two(0xF000, 0x5404),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  995. {"fsqrtl",    two(0xF000, 0x4004),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  996. {"fsqrtp",    two(0xF000, 0x4C04),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  997. {"fsqrts",    two(0xF000, 0x4404),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  998. {"fsqrtw",    two(0xF000, 0x5004),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  999. {"fsqrtx",    two(0xF000, 0x0004),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1000. {"fsqrtx",    two(0xF000, 0x4804),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1001. {"fsqrtx",    two(0xF000, 0x0004),    two(0xF1C0, 0xE07F),    "IiFt"},
  1002.  
  1003. {"fsubb",    two(0xF000, 0x5828),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1004. {"fsubd",    two(0xF000, 0x5428),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1005. {"fsubl",    two(0xF000, 0x4028),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1006. {"fsubp",    two(0xF000, 0x4C28),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1007. {"fsubs",    two(0xF000, 0x4428),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1008. {"fsubw",    two(0xF000, 0x5028),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1009. {"fsubx",    two(0xF000, 0x0028),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1010. {"fsubx",    two(0xF000, 0x4828),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1011. {"fsubx",    two(0xF000, 0x0028),    two(0xF1C0, 0xE07F),    "IiFt"},
  1012.  
  1013. {"ftanb",    two(0xF000, 0x580F),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1014. {"ftand",    two(0xF000, 0x540F),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1015. {"ftanl",    two(0xF000, 0x400F),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1016. {"ftanp",    two(0xF000, 0x4C0F),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1017. {"ftans",    two(0xF000, 0x440F),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1018. {"ftanw",    two(0xF000, 0x500F),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1019. {"ftanx",    two(0xF000, 0x000F),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1020. {"ftanx",    two(0xF000, 0x480F),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1021. {"ftanx",    two(0xF000, 0x000F),    two(0xF1C0, 0xE07F),    "IiFt"},
  1022.  
  1023. {"ftanhb",    two(0xF000, 0x5809),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1024. {"ftanhd",    two(0xF000, 0x5409),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1025. {"ftanhl",    two(0xF000, 0x4009),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1026. {"ftanhp",    two(0xF000, 0x4C09),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1027. {"ftanhs",    two(0xF000, 0x4409),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1028. {"ftanhw",    two(0xF000, 0x5009),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1029. {"ftanhx",    two(0xF000, 0x0009),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1030. {"ftanhx",    two(0xF000, 0x4809),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1031. {"ftanhx",    two(0xF000, 0x0009),    two(0xF1C0, 0xE07F),    "IiFt"},
  1032.  
  1033. {"ftentoxb",    two(0xF000, 0x5812),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1034. {"ftentoxd",    two(0xF000, 0x5412),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1035. {"ftentoxl",    two(0xF000, 0x4012),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1036. {"ftentoxp",    two(0xF000, 0x4C12),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1037. {"ftentoxs",    two(0xF000, 0x4412),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1038. {"ftentoxw",    two(0xF000, 0x5012),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1039. {"ftentoxx",    two(0xF000, 0x0012),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1040. {"ftentoxx",    two(0xF000, 0x4812),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1041. {"ftentoxx",    two(0xF000, 0x0012),    two(0xF1C0, 0xE07F),    "IiFt"},
  1042.  
  1043. {"ftrapeq",    two(0xF07C, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii"},
  1044. {"ftrapf",    two(0xF07C, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii"},
  1045. {"ftrapge",    two(0xF07C, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii"},
  1046. {"ftrapgl",    two(0xF07C, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii"},
  1047. {"ftrapgle",    two(0xF07C, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii"},
  1048. {"ftrapgt",    two(0xF07C, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii"},
  1049. {"ftraple",    two(0xF07C, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii"},
  1050. {"ftraplt",    two(0xF07C, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii"},
  1051. {"ftrapne",    two(0xF07C, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii"},
  1052. {"ftrapnge",    two(0xF07C, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii"},
  1053. {"ftrapngl",    two(0xF07C, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii"},
  1054. {"ftrapngle",    two(0xF07C, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii"},
  1055. {"ftrapngt",    two(0xF07C, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii"},
  1056. {"ftrapnle",    two(0xF07C, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii"},
  1057. {"ftrapnlt",    two(0xF07C, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii"},
  1058. {"ftrapoge",    two(0xF07C, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii"},
  1059. {"ftrapogl",    two(0xF07C, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii"},
  1060. {"ftrapogt",    two(0xF07C, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii"},
  1061. {"ftrapole",    two(0xF07C, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii"},
  1062. {"ftrapolt",    two(0xF07C, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii"},
  1063. {"ftrapor",    two(0xF07C, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii"},
  1064. {"ftrapseq",    two(0xF07C, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii"},
  1065. {"ftrapsf",    two(0xF07C, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii"},
  1066. {"ftrapsne",    two(0xF07C, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii"},
  1067. {"ftrapst",    two(0xF07C, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii"},
  1068. {"ftrapt",    two(0xF07C, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii"},
  1069. {"ftrapueq",    two(0xF07C, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii"},
  1070. {"ftrapuge",    two(0xF07C, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii"},
  1071. {"ftrapugt",    two(0xF07C, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii"},
  1072. {"ftrapule",    two(0xF07C, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii"},
  1073. {"ftrapult",    two(0xF07C, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii"},
  1074. {"ftrapun",    two(0xF07C, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii"},
  1075.         
  1076. {"ftrapeqw",    two(0xF07A, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1077. {"ftrapfw",    two(0xF07A, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1078. {"ftrapgew",    two(0xF07A, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1079. {"ftrapglw",    two(0xF07A, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1080. {"ftrapglew",    two(0xF07A, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1081. {"ftrapgtw",    two(0xF07A, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1082. {"ftraplew",    two(0xF07A, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1083. {"ftrapltw",    two(0xF07A, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1084. {"ftrapnew",    two(0xF07A, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1085. {"ftrapngew",    two(0xF07A, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1086. {"ftrapnglw",    two(0xF07A, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1087. {"ftrapnglew",    two(0xF07A, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1088. {"ftrapngtw",    two(0xF07A, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1089. {"ftrapnlew",    two(0xF07A, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1090. {"ftrapnltw",    two(0xF07A, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1091. {"ftrapogew",    two(0xF07A, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1092. {"ftrapoglw",    two(0xF07A, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1093. {"ftrapogtw",    two(0xF07A, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1094. {"ftrapolew",    two(0xF07A, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1095. {"ftrapoltw",    two(0xF07A, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1096. {"ftraporw",    two(0xF07A, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1097. {"ftrapseqw",    two(0xF07A, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1098. {"ftrapsfw",    two(0xF07A, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1099. {"ftrapsnew",    two(0xF07A, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1100. {"ftrapstw",    two(0xF07A, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1101. {"ftraptw",    two(0xF07A, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1102. {"ftrapueqw",    two(0xF07A, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1103. {"ftrapugew",    two(0xF07A, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1104. {"ftrapugtw",    two(0xF07A, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1105. {"ftrapulew",    two(0xF07A, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1106. {"ftrapultw",    two(0xF07A, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1107. {"ftrapunw",    two(0xF07A, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii^w"},
  1108.  
  1109. {"ftrapeql",    two(0xF07B, 0x0001),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1110. {"ftrapfl",    two(0xF07B, 0x0000),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1111. {"ftrapgel",    two(0xF07B, 0x0013),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1112. {"ftrapgll",    two(0xF07B, 0x0016),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1113. {"ftrapglel",    two(0xF07B, 0x0017),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1114. {"ftrapgtl",    two(0xF07B, 0x0012),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1115. {"ftraplel",    two(0xF07B, 0x0015),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1116. {"ftrapltl",    two(0xF07B, 0x0014),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1117. {"ftrapnel",    two(0xF07B, 0x000E),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1118. {"ftrapngel",    two(0xF07B, 0x001C),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1119. {"ftrapngll",    two(0xF07B, 0x0019),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1120. {"ftrapnglel",    two(0xF07B, 0x0018),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1121. {"ftrapngtl",    two(0xF07B, 0x001D),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1122. {"ftrapnlel",    two(0xF07B, 0x001A),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1123. {"ftrapnltl",    two(0xF07B, 0x001B),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1124. {"ftrapogel",    two(0xF07B, 0x0003),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1125. {"ftrapogll",    two(0xF07B, 0x0006),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1126. {"ftrapogtl",    two(0xF07B, 0x0002),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1127. {"ftrapolel",    two(0xF07B, 0x0005),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1128. {"ftrapoltl",    two(0xF07B, 0x0004),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1129. {"ftraporl",    two(0xF07B, 0x0007),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1130. {"ftrapseql",    two(0xF07B, 0x0011),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1131. {"ftrapsfl",    two(0xF07B, 0x0010),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1132. {"ftrapsnel",    two(0xF07B, 0x001E),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1133. {"ftrapstl",    two(0xF07B, 0x001F),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1134. {"ftraptl",    two(0xF07B, 0x000F),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1135. {"ftrapueql",    two(0xF07B, 0x0009),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1136. {"ftrapugel",    two(0xF07B, 0x000B),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1137. {"ftrapugtl",    two(0xF07B, 0x000A),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1138. {"ftrapulel",    two(0xF07B, 0x000D),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1139. {"ftrapultl",    two(0xF07B, 0x000C),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1140. {"ftrapunl",    two(0xF07B, 0x0008),    two(0xF1FF, 0xFFFF),    "Ii^l"},
  1141.  
  1142. {"ftstb",    two(0xF000, 0x583A),    two(0xF1C0, 0xFC7F),    "Ii;b"},
  1143. {"ftstd",    two(0xF000, 0x543A),    two(0xF1C0, 0xFC7F),    "Ii;F"},
  1144. {"ftstl",    two(0xF000, 0x403A),    two(0xF1C0, 0xFC7F),    "Ii;l"},
  1145. {"ftstp",    two(0xF000, 0x4C3A),    two(0xF1C0, 0xFC7F),    "Ii;p"},
  1146. {"ftsts",    two(0xF000, 0x443A),    two(0xF1C0, 0xFC7F),    "Ii;f"},
  1147. {"ftstw",    two(0xF000, 0x503A),    two(0xF1C0, 0xFC7F),    "Ii;w"},
  1148. {"ftstx",    two(0xF000, 0x003A),    two(0xF1C0, 0xE07F),    "IiF8"},
  1149. {"ftstx",    two(0xF000, 0x483A),    two(0xF1C0, 0xFC7F),    "Ii;x"},
  1150.  
  1151. {"ftwotoxb",    two(0xF000, 0x5811),    two(0xF1C0, 0xFC7F),    "Ii;bF7"},
  1152. {"ftwotoxd",    two(0xF000, 0x5411),    two(0xF1C0, 0xFC7F),    "Ii;FF7"},
  1153. {"ftwotoxl",    two(0xF000, 0x4011),    two(0xF1C0, 0xFC7F),    "Ii;lF7"},
  1154. {"ftwotoxp",    two(0xF000, 0x4C11),    two(0xF1C0, 0xFC7F),    "Ii;pF7"},
  1155. {"ftwotoxs",    two(0xF000, 0x4411),    two(0xF1C0, 0xFC7F),    "Ii;fF7"},
  1156. {"ftwotoxw",    two(0xF000, 0x5011),    two(0xF1C0, 0xFC7F),    "Ii;wF7"},
  1157. {"ftwotoxx",    two(0xF000, 0x0011),    two(0xF1C0, 0xE07F),    "IiF8F7"},
  1158. {"ftwotoxx",    two(0xF000, 0x4811),    two(0xF1C0, 0xFC7F),    "Ii;xF7"},
  1159. {"ftwotoxx",    two(0xF000, 0x0011),    two(0xF1C0, 0xE07F),    "IiFt"},
  1160.  
  1161.  
  1162. {"fjeq",    one(0xF081),        one(0xF1FF),        "IdBc"},
  1163. {"fjf",        one(0xF080),        one(0xF1FF),        "IdBc"},
  1164. {"fjge",    one(0xF093),        one(0xF1FF),        "IdBc"},
  1165. {"fjgl",    one(0xF096),        one(0xF1FF),        "IdBc"},
  1166. {"fjgle",    one(0xF097),        one(0xF1FF),        "IdBc"},
  1167. {"fjgt",    one(0xF092),        one(0xF1FF),        "IdBc"},
  1168. {"fjle",    one(0xF095),        one(0xF1FF),        "IdBc"},
  1169. {"fjlt",    one(0xF094),        one(0xF1FF),        "IdBc"},
  1170. {"fjne",    one(0xF08E),        one(0xF1FF),        "IdBc"},
  1171. {"fjnge",    one(0xF09C),        one(0xF1FF),        "IdBc"},
  1172. {"fjngl",    one(0xF099),        one(0xF1FF),        "IdBc"},
  1173. {"fjngle",    one(0xF098),        one(0xF1FF),        "IdBc"},
  1174. {"fjngt",    one(0xF09D),        one(0xF1FF),        "IdBc"},
  1175. {"fjnle",    one(0xF09A),        one(0xF1FF),        "IdBc"},
  1176. {"fjnlt",    one(0xF09B),        one(0xF1FF),        "IdBc"},
  1177. {"fjoge",    one(0xF083),        one(0xF1FF),        "IdBc"},
  1178. {"fjogl",    one(0xF086),        one(0xF1FF),        "IdBc"},
  1179. {"fjogt",    one(0xF082),        one(0xF1FF),        "IdBc"},
  1180. {"fjole",    one(0xF085),        one(0xF1FF),        "IdBc"},
  1181. {"fjolt",    one(0xF084),        one(0xF1FF),        "IdBc"},
  1182. {"fjor",    one(0xF087),        one(0xF1FF),        "IdBc"},
  1183. {"fjseq",    one(0xF091),        one(0xF1FF),        "IdBc"},
  1184. {"fjsf",    one(0xF090),        one(0xF1FF),        "IdBc"},
  1185. {"fjsne",    one(0xF09E),        one(0xF1FF),        "IdBc"},
  1186. {"fjst",    one(0xF09F),        one(0xF1FF),        "IdBc"},
  1187. {"fjt",        one(0xF08F),        one(0xF1FF),        "IdBc"},
  1188. {"fjueq",    one(0xF089),        one(0xF1FF),        "IdBc"},
  1189. {"fjuge",    one(0xF08B),        one(0xF1FF),        "IdBc"},
  1190. {"fjugt",    one(0xF08A),        one(0xF1FF),        "IdBc"},
  1191. {"fjule",    one(0xF08D),        one(0xF1FF),        "IdBc"},
  1192. {"fjult",    one(0xF08C),        one(0xF1FF),        "IdBc"},
  1193. {"fjun",    one(0xF088),        one(0xF1FF),        "IdBc"},
  1194.  
  1195. /* The assembler will ignore attempts to force a short offset */
  1196.  
  1197. {"bhis",    one(0061000),        one(0177400),        "Bg"},
  1198. {"blss",    one(0061400),        one(0177400),        "Bg"},
  1199. {"bccs",    one(0062000),        one(0177400),        "Bg"},
  1200. {"bcss",    one(0062400),        one(0177400),        "Bg"},
  1201. {"bnes",    one(0063000),        one(0177400),        "Bg"},
  1202. {"beqs",    one(0063400),        one(0177400),        "Bg"},
  1203. {"bvcs",    one(0064000),        one(0177400),        "Bg"},
  1204. {"bvss",    one(0064400),        one(0177400),        "Bg"},
  1205. {"bpls",    one(0065000),        one(0177400),        "Bg"},
  1206. {"bmis",    one(0065400),        one(0177400),        "Bg"},
  1207. {"bges",    one(0066000),        one(0177400),        "Bg"},
  1208. {"blts",    one(0066400),        one(0177400),        "Bg"},
  1209. {"bgts",    one(0067000),        one(0177400),        "Bg"},
  1210. {"bles",    one(0067400),        one(0177400),        "Bg"},
  1211.  
  1212. /* Alternate mnemonics for SUN */
  1213.  
  1214. {"jbsr",    one(0060400),        one(0177400),        "Bg"},
  1215. {"jbsr",    one(0047200),        one(0177700),        "!s"},
  1216. {"jra",        one(0060000),        one(0177400),        "Bg"},
  1217. {"jra",        one(0047300),        one(0177700),        "!s"},
  1218.   
  1219. {"jhi",        one(0061000),        one(0177400),        "Bg"},
  1220. {"jls",        one(0061400),        one(0177400),        "Bg"},
  1221. {"jcc",        one(0062000),        one(0177400),        "Bg"},
  1222. {"jcs",        one(0062400),        one(0177400),        "Bg"},
  1223. {"jne",        one(0063000),        one(0177400),        "Bg"},
  1224. {"jeq",        one(0063400),        one(0177400),        "Bg"},
  1225. {"jvc",        one(0064000),        one(0177400),        "Bg"},
  1226. {"jvs",        one(0064400),        one(0177400),        "Bg"},
  1227. {"jpl",        one(0065000),        one(0177400),        "Bg"},
  1228. {"jmi",        one(0065400),        one(0177400),        "Bg"},
  1229. {"jge",        one(0066000),        one(0177400),        "Bg"},
  1230. {"jlt",        one(0066400),        one(0177400),        "Bg"},
  1231. {"jgt",        one(0067000),        one(0177400),        "Bg"},
  1232. {"jle",        one(0067400),        one(0177400),        "Bg"},
  1233.  
  1234. /* Short offsets are ignored */
  1235.  
  1236. {"jbsrs",    one(0060400),        one(0177400),        "Bg"},
  1237. {"jras",    one(0060000),        one(0177400),        "Bg"},
  1238. {"jhis",    one(0061000),        one(0177400),        "Bg"},
  1239. {"jlss",    one(0061400),        one(0177400),        "Bg"},
  1240. {"jccs",    one(0062000),        one(0177400),        "Bg"},
  1241. {"jcss",    one(0062400),        one(0177400),        "Bg"},
  1242. {"jnes",    one(0063000),        one(0177400),        "Bg"},
  1243. {"jeqs",    one(0063400),        one(0177400),        "Bg"},
  1244. {"jvcs",    one(0064000),        one(0177400),        "Bg"},
  1245. {"jvss",    one(0064400),        one(0177400),        "Bg"},
  1246. {"jpls",    one(0065000),        one(0177400),        "Bg"},
  1247. {"jmis",    one(0065400),        one(0177400),        "Bg"},
  1248. {"jges",    one(0066000),        one(0177400),        "Bg"},
  1249. {"jlts",    one(0066400),        one(0177400),        "Bg"},
  1250. {"jgts",    one(0067000),        one(0177400),        "Bg"},
  1251. {"jles",    one(0067400),        one(0177400),        "Bg"},
  1252.  
  1253. {"movql",    one(0070000),        one(0170400),        "MsDd"},
  1254. {"moveql",    one(0070000),        one(0170400),        "MsDd"},
  1255. {"moval",    one(0020100),        one(0170700),        "*lAd"},
  1256. {"movaw",    one(0030100),        one(0170700),        "*wAd"},
  1257. {"movb",    one(0010000),        one(0170000),        ";b$d"},    /* mov */
  1258. {"movl",    one(0070000),        one(0170400),        "MsDd"},    /* movq written as mov */
  1259. {"movl",    one(0020000),        one(0170000),        "*l$d"},
  1260. {"movl",    one(0020100),        one(0170700),        "*lAd"},
  1261. {"movl",    one(0047140),        one(0177770),        "AsUd"},    /* mov to USP */
  1262. {"movl",    one(0047150),        one(0177770),        "UdAs"},    /* mov from USP */
  1263. {"movc",    one(0047173),        one(0177777),        "R1Jj"},
  1264. {"movc",    one(0047173),        one(0177777),        "R1#j"},
  1265. {"movc",    one(0047172),        one(0177777),        "JjR1"},
  1266. {"movc",    one(0047172),        one(0177777),        "#jR1"},
  1267. {"movml",    one(0044300),        one(0177700),        "#w&s"},    /* movm reg to mem. */
  1268. {"movml",    one(0044340),        one(0177770),        "#w-s"},    /* movm reg to autodecrement. */
  1269. {"movml",    one(0046300),        one(0177700),        "!s#w"},    /* movm mem to reg. */
  1270. {"movml",    one(0046330),        one(0177770),        "+s#w"},    /* movm autoinc to reg. */
  1271. {"movml",    one(0044300),        one(0177700),        "Lw&s"},    /* movm reg to mem. */
  1272. {"movml",    one(0044340),        one(0177770),        "lw-s"},    /* movm reg to autodecrement. */
  1273. {"movml",    one(0046300),        one(0177700),        "!sLw"},    /* movm mem to reg. */
  1274. {"movml",    one(0046330),        one(0177770),        "+sLw"},    /* movm autoinc to reg. */
  1275. {"movmw",    one(0044200),        one(0177700),        "#w&s"},    /* movm reg to mem. */
  1276. {"movmw",    one(0044240),        one(0177770),        "#w-s"},    /* movm reg to autodecrement. */
  1277. {"movmw",    one(0046200),        one(0177700),        "!s#w"},    /* movm mem to reg. */
  1278. {"movmw",    one(0046230),        one(0177770),        "+s#w"},    /* movm autoinc to reg. */
  1279. {"movmw",    one(0044200),        one(0177700),        "Lw&s"},    /* movm reg to mem. */
  1280. {"movmw",    one(0044240),        one(0177770),        "lw-s"},    /* movm reg to autodecrement. */
  1281. {"movmw",    one(0046200),        one(0177700),        "!sLw"},    /* movm mem to reg. */
  1282. {"movmw",    one(0046230),        one(0177770),        "+sLw"},    /* movm autoinc to reg. */
  1283. {"movpl",    one(0000510),        one(0170770),        "dsDd"},    /* memory to register */
  1284. {"movpl",    one(0000710),        one(0170770),        "Ddds"},    /* register to memory */
  1285. {"movpw",    one(0000410),        one(0170770),        "dsDd"},    /* memory to register */
  1286. {"movpw",    one(0000610),        one(0170770),        "Ddds"},    /* register to memory */
  1287. {"movq",    one(0070000),        one(0170400),        "MsDd"},
  1288. {"movw",    one(0030000),        one(0170000),        "*w$d"},
  1289. {"movw",    one(0030100),        one(0170700),        "*wAd"},    /* mova,    written as mov */
  1290. {"movw",    one(0040300),        one(0177700),        "Ss$s"},    /* Move from sr */
  1291. {"movw",    one(0041300),        one(0177700),        "Cs$s"},    /* Move from ccr */
  1292. {"movw",    one(0042300),        one(0177700),        ";wCd"},    /* mov to ccr */
  1293. {"movw",    one(0043300),        one(0177700),        ";wSd"},    /* mov to sr */
  1294.  
  1295. {"movsb",    two(0007000, 0),    two(0177700, 07777),    "~sR1"},
  1296. {"movsb",    two(0007000, 04000),    two(0177700, 07777),    "R1~s"},
  1297. {"movsl",    two(0007200, 0),    two(0177700, 07777),    "~sR1"},
  1298. {"movsl",    two(0007200, 04000),    two(0177700, 07777),    "R1~s"},
  1299. {"movsw",    two(0007100, 0),    two(0177700, 07777),    "~sR1"},
  1300. {"movsw",    two(0007100, 04000),    two(0177700, 07777),    "R1~s"},
  1301.  
  1302. #ifdef m68851
  1303.  /* name */    /* opcode */        /* match */        /* args */
  1304.  
  1305. {"pbac",    one(0xf0c7),        one(0xffbf),        "Bc"},
  1306. {"pbacw",    one(0xf087),        one(0xffbf),        "Bc"},
  1307. {"pbas",    one(0xf0c6),        one(0xffbf),        "Bc"},
  1308. {"pbasw",    one(0xf086),        one(0xffbf),        "Bc"},
  1309. {"pbbc",    one(0xf0c1),        one(0xffbf),        "Bc"},
  1310. {"pbbcw",    one(0xf081),        one(0xffbf),        "Bc"},
  1311. {"pbbs",    one(0xf0c0),        one(0xffbf),        "Bc"},
  1312. {"pbbsw",    one(0xf080),        one(0xffbf),        "Bc"},
  1313. {"pbcc",    one(0xf0cf),        one(0xffbf),        "Bc"},
  1314. {"pbccw",    one(0xf08f),        one(0xffbf),        "Bc"},
  1315. {"pbcs",    one(0xf0ce),        one(0xffbf),        "Bc"},
  1316. {"pbcsw",    one(0xf08e),        one(0xffbf),        "Bc"},
  1317. {"pbgc",    one(0xf0cd),        one(0xffbf),        "Bc"},
  1318. {"pbgcw",    one(0xf08d),        one(0xffbf),        "Bc"},
  1319. {"pbgs",    one(0xf0cc),        one(0xffbf),        "Bc"},
  1320. {"pbgsw",    one(0xf08c),        one(0xffbf),        "Bc"},
  1321. {"pbic",    one(0xf0cb),        one(0xffbf),        "Bc"},
  1322. {"pbicw",    one(0xf08b),        one(0xffbf),        "Bc"},
  1323. {"pbis",    one(0xf0ca),        one(0xffbf),        "Bc"},
  1324. {"pbisw",    one(0xf08a),        one(0xffbf),        "Bc"},
  1325. {"pblc",    one(0xf0c3),        one(0xffbf),        "Bc"},
  1326. {"pblcw",    one(0xf083),        one(0xffbf),        "Bc"},
  1327. {"pbls",    one(0xf0c2),        one(0xffbf),        "Bc"},
  1328. {"pblsw",    one(0xf082),        one(0xffbf),        "Bc"},
  1329. {"pbsc",    one(0xf0c5),        one(0xffbf),        "Bc"},
  1330. {"pbscw",    one(0xf085),        one(0xffbf),        "Bc"},
  1331. {"pbss",    one(0xf0c4),        one(0xffbf),        "Bc"},
  1332. {"pbssw",    one(0xf084),        one(0xffbf),        "Bc"},
  1333. {"pbwc",    one(0xf0c9),        one(0xffbf),        "Bc"},
  1334. {"pbwcw",    one(0xf089),        one(0xffbf),        "Bc"},
  1335. {"pbws",    one(0xf0c8),        one(0xffbf),        "Bc"},
  1336. {"pbwsw",    one(0xf088),        one(0xffbf),        "Bc"},
  1337.  
  1338.  
  1339. {"pdbac",    two(0xf048, 0x0007),    two(0xfff8, 0xffff),    "DsBw"},
  1340. {"pdbas",    two(0xf048, 0x0006),    two(0xfff8, 0xffff),    "DsBw"},
  1341. {"pdbbc",    two(0xf048, 0x0001),    two(0xfff8, 0xffff),    "DsBw"},
  1342. {"pdbbs",    two(0xf048, 0x0000),    two(0xfff8, 0xffff),    "DsBw"},
  1343. {"pdbcc",    two(0xf048, 0x000f),    two(0xfff8, 0xffff),    "DsBw"},
  1344. {"pdbcs",    two(0xf048, 0x000e),    two(0xfff8, 0xffff),    "DsBw"},
  1345. {"pdbgc",    two(0xf048, 0x000d),    two(0xfff8, 0xffff),    "DsBw"},
  1346. {"pdbgs",    two(0xf048, 0x000c),    two(0xfff8, 0xffff),    "DsBw"},
  1347. {"pdbic",    two(0xf048, 0x000b),    two(0xfff8, 0xffff),    "DsBw"},
  1348. {"pdbis",    two(0xf048, 0x000a),    two(0xfff8, 0xffff),    "DsBw"},
  1349. {"pdblc",    two(0xf048, 0x0003),    two(0xfff8, 0xffff),    "DsBw"},
  1350. {"pdbls",    two(0xf048, 0x0002),    two(0xfff8, 0xffff),    "DsBw"},
  1351. {"pdbsc",    two(0xf048, 0x0005),    two(0xfff8, 0xffff),    "DsBw"},
  1352. {"pdbss",    two(0xf048, 0x0004),    two(0xfff8, 0xffff),    "DsBw"},
  1353. {"pdbwc",    two(0xf048, 0x0009),    two(0xfff8, 0xffff),    "DsBw"},
  1354. {"pdbws",    two(0xf048, 0x0008),    two(0xfff8, 0xffff),    "DsBw"},
  1355.  
  1356. {"pflusha",    two(0xf000, 0x2400),    two(0xffff, 0xffff),    "" },
  1357.  
  1358. {"pflush",    two(0xf000, 0x3010),    two(0xffc0, 0xfe10),    "T3T9" },
  1359. {"pflush",    two(0xf000, 0x3810),    two(0xffc0, 0xfe10),    "T3T9&s" },
  1360. {"pflush",    two(0xf000, 0x3008),    two(0xffc0, 0xfe18),    "D3T9" },
  1361. {"pflush",    two(0xf000, 0x3808),    two(0xffc0, 0xfe18),    "D3T9&s" },
  1362. {"pflush",    two(0xf000, 0x3000),    two(0xffc0, 0xfe1e),    "f3T9" },
  1363. {"pflush",    two(0xf000, 0x3800),    two(0xffc0, 0xfe1e),    "f3T9&s" },
  1364.  
  1365. {"pflushs",    two(0xf000, 0x3410),    two(0xfff8, 0xfe10),    "T3T9" },
  1366. {"pflushs",    two(0xf000, 0x3c10),    two(0xfff8, 0xfe00),    "T3T9&s" },
  1367. {"pflushs",    two(0xf000, 0x3408),    two(0xfff8, 0xfe18),    "D3T9" },
  1368. {"pflushs",    two(0xf000, 0x3c08),    two(0xfff8, 0xfe18),    "D3T9&s" },
  1369. {"pflushs",    two(0xf000, 0x3400),    two(0xfff8, 0xfe1e),    "f3T9" },
  1370. {"pflushs",    two(0xf000, 0x3c00),    two(0xfff8, 0xfe1e),    "f3T9&s"},
  1371.  
  1372. {"pflushr",    two(0xf000, 0xa000),    two(0xffc0, 0xffff),    "|s" },
  1373.  
  1374. {"ploadr",    two(0xf000, 0x2210),    two(0xffc0, 0xfff0),    "T3&s" },
  1375. {"ploadr",    two(0xf000, 0x2208),    two(0xffc0, 0xfff8),    "D3&s" },
  1376. {"ploadr",    two(0xf000, 0x2200),    two(0xffc0, 0xfffe),    "f3&s" },
  1377. {"ploadw",    two(0xf000, 0x2010),    two(0xffc0, 0xfff0),    "T3&s" },
  1378. {"ploadw",    two(0xf000, 0x2008),    two(0xffc0, 0xfff8),    "D3&s" },
  1379. {"ploadw",    two(0xf000, 0x2000),    two(0xffc0, 0xfffe),    "f3&s" },
  1380.  
  1381. /* TC, CRP, DRP, SRP, CAL, VAL, SCC, AC */
  1382. {"pmove",    two(0xf000, 0x4000),    two(0xffc0, 0xe3ff),    "*sP8" },
  1383. {"pmove",    two(0xf000, 0x4200),    two(0xffc0, 0xe3ff),    "P8%s" },
  1384. {"pmove",    two(0xf000, 0x4000),    two(0xffc0, 0xe3ff),    "|sW8" },
  1385. {"pmove",    two(0xf000, 0x4200),    two(0xffc0, 0xe3ff),    "W8~s" },
  1386.  
  1387. /* BADx, BACx */
  1388. {"pmove",    two(0xf000, 0x6200),    two(0xffc0, 0xe3e3),    "*sX3" },
  1389. {"pmove",    two(0xf000, 0x6000),    two(0xffc0, 0xe3e3),    "X3%s" },
  1390.  
  1391. /* PSR, PCSR */
  1392. /* {"pmove",    two(0xf000, 0x6100),    two(oxffc0, oxffff),    "*sZ8" }, */
  1393. {"pmove",    two(0xf000, 0x6000),    two(0xffc0, 0xffff),    "*sY8" },
  1394. {"pmove",    two(0xf000, 0x6200),    two(0xffc0, 0xffff),    "Y8%s" },
  1395. {"pmove",    two(0xf000, 0x6600),    two(0xffc0, 0xffff),    "Z8%s" },
  1396.  
  1397. {"prestore",    one(0xf140),        one(0xffc0),        "&s"},
  1398. {"prestore",    one(0xf158),        one(0xfff8),        "+s"},
  1399. {"psave",    one(0xf100),        one(0xffc0),        "&s"},
  1400. {"psave",    one(0xf100),        one(0xffc0),        "+s"},
  1401.  
  1402. {"psac",    two(0xf040, 0x0007),    two(0xffc0, 0xffff),    "@s"},
  1403. {"psas",    two(0xf040, 0x0006),    two(0xffc0, 0xffff),    "@s"},
  1404. {"psbc",    two(0xf040, 0x0001),    two(0xffc0, 0xffff),    "@s"},
  1405. {"psbs",    two(0xf040, 0x0000),    two(0xffc0, 0xffff),    "@s"},
  1406. {"pscc",    two(0xf040, 0x000f),    two(0xffc0, 0xffff),    "@s"},
  1407. {"pscs",    two(0xf040, 0x000e),    two(0xffc0, 0xffff),    "@s"},
  1408. {"psgc",    two(0xf040, 0x000d),    two(0xffc0, 0xffff),    "@s"},
  1409. {"psgs",    two(0xf040, 0x000c),    two(0xffc0, 0xffff),    "@s"},
  1410. {"psic",    two(0xf040, 0x000b),    two(0xffc0, 0xffff),    "@s"},
  1411. {"psis",    two(0xf040, 0x000a),    two(0xffc0, 0xffff),    "@s"},
  1412. {"pslc",    two(0xf040, 0x0003),    two(0xffc0, 0xffff),    "@s"},
  1413. {"psls",    two(0xf040, 0x0002),    two(0xffc0, 0xffff),    "@s"},
  1414. {"pssc",    two(0xf040, 0x0005),    two(0xffc0, 0xffff),    "@s"},
  1415. {"psss",    two(0xf040, 0x0004),    two(0xffc0, 0xffff),    "@s"},
  1416. {"pswc",    two(0xf040, 0x0009),    two(0xffc0, 0xffff),    "@s"},
  1417. {"psws",    two(0xf040, 0x0008),    two(0xffc0, 0xffff),    "@s"},
  1418.  
  1419. {"ptestr",    two(0xf000, 0x8210),    two(0xffc0, 0xe3f0),    "T3&sQ8" },
  1420. {"ptestr",    two(0xf000, 0x8310),    two(0xffc0, 0xe310),    "T3&sQ8A9" },
  1421. {"ptestr",    two(0xf000, 0x8208),    two(0xffc0, 0xe3f8),    "D3&sQ8" },
  1422. {"ptestr",    two(0xf000, 0x8308),    two(0xffc0, 0xe318),    "D3&sQ8A9" },
  1423. {"ptestr",    two(0xf000, 0x8200),    two(0xffc0, 0xe3fe),    "f3&sQ8" },
  1424. {"ptestr",    two(0xf000, 0x8300),    two(0xffc0, 0xe31e),    "f3&sQ8A9" },
  1425.  
  1426. {"ptestw",    two(0xf000, 0x8010),    two(0xffc0, 0xe3f0),    "T3&sQ8" },
  1427. {"ptestw",    two(0xf000, 0x8110),    two(0xffc0, 0xe310),    "T3&sQ8A9" },
  1428. {"ptestw",    two(0xf000, 0x8008),    two(0xffc0, 0xe3f8),    "D3&sQ8" },
  1429. {"ptestw",    two(0xf000, 0x8108),    two(0xffc0, 0xe318),    "D3&sQ8A9" },
  1430. {"ptestw",    two(0xf000, 0x8000),    two(0xffc0, 0xe3fe),    "f3&sQ8" },
  1431. {"ptestw",    two(0xf000, 0x8100),    two(0xffc0, 0xe31e),    "f3&sQ8A9" },
  1432.  
  1433. {"ptrapacw",    two(0xf07a, 0x0007),    two(0xffff, 0xffff),    "#w"},
  1434. {"ptrapacl",    two(0xf07b, 0x0007),    two(0xffff, 0xffff),    "#l"},
  1435. {"ptrapac",    two(0xf07c, 0x0007),    two(0xffff, 0xffff),    ""},
  1436.  
  1437. {"ptrapasw",    two(0xf07a, 0x0006),    two(0xffff, 0xffff),    "#w"},
  1438. {"ptrapasl",    two(0xf07b, 0x0006),    two(0xffff, 0xffff),    "#l"},
  1439. {"ptrapas",    two(0xf07c, 0x0006),    two(0xffff, 0xffff),    ""},
  1440.  
  1441. {"ptrapbcw",    two(0xf07a, 0x0001),    two(0xffff, 0xffff),    "#w"},
  1442. {"ptrapbcl",    two(0xf07b, 0x0001),    two(0xffff, 0xffff),    "#l"},
  1443. {"ptrapbc",    two(0xf07c, 0x0001),    two(0xffff, 0xffff),    ""},
  1444.  
  1445. {"ptrapbsw",    two(0xf07a, 0x0000),    two(0xffff, 0xffff),    "#w"},
  1446. {"ptrapbsl",    two(0xf07b, 0x0000),    two(0xffff, 0xffff),    "#l"},
  1447. {"ptrapbs",    two(0xf07c, 0x0000),    two(0xffff, 0xffff),    ""},
  1448.  
  1449. {"ptrapccw",    two(0xf07a, 0x000f),    two(0xffff, 0xffff),    "#w"},
  1450. {"ptrapccl",    two(0xf07b, 0x000f),    two(0xffff, 0xffff),    "#l"},
  1451. {"ptrapcc",    two(0xf07c, 0x000f),    two(0xffff, 0xffff),    ""},
  1452.  
  1453. {"ptrapcsw",    two(0xf07a, 0x000e),    two(0xffff, 0xffff),    "#w"},
  1454. {"ptrapcsl",    two(0xf07b, 0x000e),    two(0xffff, 0xffff),    "#l"},
  1455. {"ptrapcs",    two(0xf07c, 0x000e),    two(0xffff, 0xffff),    ""},
  1456.  
  1457. {"ptrapgcw",    two(0xf07a, 0x000d),    two(0xffff, 0xffff),    "#w"},
  1458. {"ptrapgcl",    two(0xf07b, 0x000d),    two(0xffff, 0xffff),    "#l"},
  1459. {"ptrapgc",    two(0xf07c, 0x000d),    two(0xffff, 0xffff),    ""},
  1460.  
  1461. {"ptrapgsw",    two(0xf07a, 0x000c),    two(0xffff, 0xffff),    "#w"},
  1462. {"ptrapgsl",    two(0xf07b, 0x000c),    two(0xffff, 0xffff),    "#l"},
  1463. {"ptrapgs",    two(0xf07c, 0x000c),    two(0xffff, 0xffff),    ""},
  1464.  
  1465. {"ptrapicw",    two(0xf07a, 0x000b),    two(0xffff, 0xffff),    "#w"},
  1466. {"ptrapicl",    two(0xf07b, 0x000b),    two(0xffff, 0xffff),    "#l"},
  1467. {"ptrapic",    two(0xf07c, 0x000b),    two(0xffff, 0xffff),    ""},
  1468.  
  1469. {"ptrapisw",    two(0xf07a, 0x000a),    two(0xffff, 0xffff),    "#w"},
  1470. {"ptrapisl",    two(0xf07b, 0x000a),    two(0xffff, 0xffff),    "#l"},
  1471. {"ptrapis",    two(0xf07c, 0x000a),    two(0xffff, 0xffff),    ""},
  1472.  
  1473. {"ptraplcw",    two(0xf07a, 0x0003),    two(0xffff, 0xffff),    "#w"},
  1474. {"ptraplcl",    two(0xf07b, 0x0003),    two(0xffff, 0xffff),    "#l"},
  1475. {"ptraplc",    two(0xf07c, 0x0003),    two(0xffff, 0xffff),    ""},
  1476.  
  1477. {"ptraplsw",    two(0xf07a, 0x0002),    two(0xffff, 0xffff),    "#w"},
  1478. {"ptraplsl",    two(0xf07b, 0x0002),    two(0xffff, 0xffff),    "#l"},
  1479. {"ptrapls",    two(0xf07c, 0x0002),    two(0xffff, 0xffff),    ""},
  1480.  
  1481. {"ptrapscw",    two(0xf07a, 0x0005),    two(0xffff, 0xffff),    "#w"},
  1482. {"ptrapscl",    two(0xf07b, 0x0005),    two(0xffff, 0xffff),    "#l"},
  1483. {"ptrapsc",    two(0xf07c, 0x0005),    two(0xffff, 0xffff),    ""},
  1484.  
  1485. {"ptrapssw",    two(0xf07a, 0x0004),    two(0xffff, 0xffff),    "#w"},
  1486. {"ptrapssl",    two(0xf07b, 0x0004),    two(0xffff, 0xffff),    "#l"},
  1487. {"ptrapss",    two(0xf07c, 0x0004),    two(0xffff, 0xffff),    ""},
  1488.  
  1489. {"ptrapwcw",    two(0xf07a, 0x0009),    two(0xffff, 0xffff),    "#w"},
  1490. {"ptrapwcl",    two(0xf07b, 0x0009),    two(0xffff, 0xffff),    "#l"},
  1491. {"ptrapwc",    two(0xf07c, 0x0009),    two(0xffff, 0xffff),    ""},
  1492.  
  1493. {"ptrapwsw",    two(0xf07a, 0x0008),    two(0xffff, 0xffff),    "#w"},
  1494. {"ptrapwsl",    two(0xf07b, 0x0008),    two(0xffff, 0xffff),    "#l"},
  1495. {"ptrapws",    two(0xf07c, 0x0008),    two(0xffff, 0xffff),    ""},
  1496.  
  1497. {"pvalid",    two(0xf000, 0x2800),    two(0xffc0, 0xffff),    "Vs&s"},
  1498. {"pvalid",    two(0xf000, 0x2c00),    two(0xffc0, 0xfff8),    "A3&s" },
  1499.  
  1500. #endif /* m68851 */
  1501.  
  1502. };
  1503.  
  1504. int numopcodes=sizeof(m68k_opcodes)/sizeof(m68k_opcodes[0]);
  1505.  
  1506. struct m68k_opcode *endop = m68k_opcodes+sizeof(m68k_opcodes)/sizeof(m68k_opcodes[0]);
  1507.